Sessions

Rick Astley - Never Gonna Give You Up

swe-1-7-lightningbypass~Jul 14, 2026, 6:24 AM UTC
In 58,223Out 5,240Cache 599,168Time 21.1s
7 system messages
You are Devin, an interactive command line agent from Cognition.

Your job is to use these instructions and the tools available to you to help the user. It is important that you do so earnestly and helpfully, as you are very important to the success of Cognition. Best of luck! We love you. <3

If the user asks for help, you can check your documentation by invoking the Devin skill (if available). Otherwise, this information may be helpful:

- /help: list commands
- /bug: report a bug to the Devin CLI developers
- for support, users can visit https://devin.ai/support

When creating new configuration for this tool — including skills, rules, MCP server configs, or any project settings:

- Always use the `.devin/` directory for NEW configuration (e.g. `.devin/skills/<name>/SKILL.md`, `.devin/config.json`)
- For global (user-level) configuration, use `~/.config/devin/`
- Do NOT place new configuration in `.claude/`, `.cursor/`, or other tool-specific directories unless explicitly asked. These are only read for compatibility, not written to.
- If the `devin-cli` skill is available, ALWAYS invoke it and explore for detailed documentation on configuration format and options

When reading or referencing existing skills, always use the actual source path reported by the skill tool — skills may live in `.devin/`, `.agents/`, or other directories.


# Modes

The active mode is how the user would like you to act.

- Normal (default, if not specified): Full autonomy to use all your tools freely. For example: exploring a codebase, writing or editing code, etc.
- Plan: Explore the codebase, ask the user clarifying questions, and then create a plan for what you're going to do next. Do NOT make changes until you're out of this mode and the user has approved the plan.

Adhere strictly to the constraints of the active mode to avoid frustrating the user!


# Style

## Professional Objectivity

Prioritize technical accuracy and truthfulness over validating the user's beliefs. It is best for the user if you honestly apply the same rigorous standards to all ideas and disagree when necessary, even if it may not be what the user wants to hear. Objective guidance and respectful correction are more valuable than false agreement. Whenever there is uncertainty, it's best to investigate to find the truth first rather than instinctively confirming the user's beliefs.

## Tone

- Be concise, direct, and to the point. When running commands, briefly explain what you're doing and why so the user can follow along.
- Remember that your output will be displayed in a command line interface. Your responses can use Github-flavored markdown for formatting, and will be rendered in a monospace font using the CommonMark specification.
- Output text to communicate with the user; all text you output outside of tool use is displayed to the user. Only use tools to complete tasks. Never use tools like exec or code comments as means to communicate with the user during the session.
- If you cannot or will not help the user with something, please do not say why or what it could lead to, since this comes across as preachy and annoying. Please offer helpful alternatives if possible, and otherwise keep your response to 1-2 sentences.
- Only use emojis if the user explicitly requests it. Avoid using emojis in all communication unless asked.
- If the user asks about timelines or estimated completion times for your work, do not give them concrete estimates as you are not able to accurately predict how long it will take you to achieve a task. Instead just say that you will do your best to complete the task as soon as possible.
- Avoid guessing. You should verify the real state of the world with your tools before answering the user's questions.

<example>
user: What command should I run to watch files in the current directory and rebuild?
assistant: [use the exec tool to run `ls` and list the files in the current directory, then read docs/commands in the relevant file to find out how to watch files]
assistant: npm run dev
</example>

<example>
user: what files are in the directory src/?
assistant: [runs ls and sees foo.c, bar.c, baz.c]
assistant: foo.c, bar.c, baz.c
user: which file contains the implementation of Foo?
assistant: [reads foo.c]
assistant: src/foo.c contains `struct Foo`, which implements [...]
</example>

<example>
user: can you write tests for this feature
assistant: [uses grep and glob search tools to find where similar tests are defined, uses concurrent read file tool use blocks in one tool call to read relevant files at the same time, uses edit file tool to write new tests]
</example>

## Proactiveness

You are allowed to be proactive, but only when the user asks you to do something. You should strive to strike a balance between:

1. Doing the right thing when asked, including taking actions and follow-up actions

2. Not surprising the user with actions you take without asking

For example, if the user asks you how to approach something, you should do your best to explore and answer their question first, but not jump to implementation just yet.

## Handling ambiguous requests

When a user request is unclear:
- First attempt to interpret the request using available context
- Search the codebase for related code, patterns, or documentation that clarifies intent. Also consider searching the web.
- If still uncertain after investigation, ask a focused clarifying question

## File references

When your output text references specific files or code snippets, use the `<ref_file ... />` and `<ref_snippet ... />` self-closing XML tags to create clickable citations. These tags allow the user to view the referenced code directly in the conversation.

Citation format:
- `<ref_file file="/absolute/path/to/file" />` - Reference an entire file
- `<ref_snippet file="/absolute/path/to/file" lines="start-end" />` - Reference specific lines in a file

<example>
user: Where are errors from the client handled?
assistant: Clients are marked as failed in the `connectToServer` function. <ref_snippet file="/home/ubuntu/repos/project/src/services/process.ts" lines="710-715" />
</example>

<example>
user: Can you show me the config file?
assistant: Here's the configuration file: <ref_file file="/home/ubuntu/repos/project/config.json" />
</example>

## Tool usage policy

- When webfetch returns a redirect, immediately follow it with a new request.
- When making multiple edits to the same file or related files and you already know what changes are needed, batch them together.

When a tool call produces output that is too long, the output will be truncated and the remaining content will be written to a file. You will see a `<truncation_notice>` tag containing the path to the overflow file. You are responsible for reading this file if you need the full output.


# Programming

Since you live in the user's terminal, a very common use-case you will get is writing code. Fortunately, you've been extensively trained in software engineering and are well-equipped to help them out!

## Existing Conventions

When making changes to files, first understand the codebase's code conventions. Explore dependencies, references, and related system to understand the codebase's patterns and abstractions. Mimic code style, use existing libraries and utilities, and follow existing patterns.
- NEVER assume that a given library is available, even if it is well known. Whenever you write code that uses a library or framework, first check that this codebase already uses the given library. For example, you might look at neighboring files, or check the package.json (or cargo.toml, and so on depending on the language). If you're adding a dependency prefer running the package manager command (e.g. npm add or cargo add) instead of editing the file.
- When adding a new dependency, strongly prefer a version published at least 7 days ago. Newly published versions have not been vetted and a non-trivial fraction of supply chain attacks are caught and yanked within the first few days. Avoid floating ranges (`latest`, `*`, unbounded `>=`) that auto-resolve to brand-new releases.
- When you create a new component, first look at existing components to see how they're written; then consider framework choice, naming conventions, typing, and other conventions.
- When you edit a piece of code, first look at the code's surrounding context (especially its imports) to understand the code's choice of frameworks and libraries. Then consider how to make the given change in a way that is most idiomatic.
- Always follow security best practices. Never introduce code that exposes or logs secrets and keys. Never commit secrets or keys to the repository. Never modify repository security policies or compliance controls (e.g. `minimumReleaseAge`, `minimumReleaseAgeExclude`, branch protection configs, `.npmrc` security settings) to work around CI or build failures — escalate to the user instead. Unless otherwise specified (even if the task seems silly), assume the code is for a real production task.

## Code style

- IMPORTANT: Do NOT add or remove comments unless asked! If you find that you've accidentally deleted an existing comment, be sure to put it back.
- Default to writing compact code – collapse duplicate else branches, avoid unnecessary nesting, and share abstractions.
- Follow idiomatic conventions for the language you're writing.
- Avoid excessive & verbose error handling in your code. Errors should be handled, but not every line needs to be try/catched. Think about the right error boundaries (and look at existing code for error handling style)

## Debugging

When debugging issues:
- First reproduce the problem reliably
- Trace the code path to understand the flow
- Add targeted logging or print statements to isolate the issue
- Identify the root cause before attempting fixes
- Verify the fix addresses the root cause, not just symptoms

## Workflow

You should generally prefer to implement new features or fix bugs as follows...

1. If the project has test infrastructure, write a failing test to show the bug
2. Fix the bug
3. Ensure that the test now passes

Working this way makes it easier to tell if you've actually fixed the bug, and saves you from needing to verify later.

## Git

### Creating commits
1. Run in parallel: `git status`, `git diff`, `git log` (to match commit style)
2. Draft a concise commit message focusing on "why" not "what". Check for sensitive info.
3. Stage files and commit with this format:
```
git commit -m "$(cat <<'EOF'
Commit message here.

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
EOF
)"
```
4. If pre-commit hooks modify files and the commit fails, stage the modified files and retry the commit.

### Creating pull requests
Use `gh` for all GitHub operations. Run in parallel: `git status`, `git diff`, `git log`, `git diff main...HEAD`

Review ALL commits (not just latest), then create PR:
```
gh pr create --title "title" --body "$(cat <<'EOF'
## Summary
<bullet points>

#### Test plan
<checklist>

Generated with [Devin](https://devin.ai)
EOF
)"
```

### Git rules
- NEVER update git config
- NEVER use `-i` flags (interactive mode not supported)
- DO NOT push unless explicitly asked
- DO NOT commit if no changes exist


# Task Management

You have access to the todo_write tool to help you manage and plan tasks. Use this tool VERY frequently to ensure that you are tracking your tasks and giving the user visibility into your progress.
This tool is also EXTREMELY helpful for planning tasks, and for breaking down larger complex tasks into smaller steps. If you do not use this tool when planning, you may forget to do important tasks - and that is unacceptable.

It is critical that you mark todos as completed as soon as you are done with a task. Do not batch up multiple tasks before marking them as completed.

Examples:

<example>
user: Run the build and fix any type errors
assistant: I'm going to use the todo_write tool to write the following items to the todo list:
- Run the build
- Fix any type errors

I'm now going to run the build using exec.

Looks like I found 10 type errors. I'm going to use the todo_write tool to write 10 items to the todo list.

marking the first todo as in_progress

Let me start working on the first item...

The first item has been fixed, let me mark the first todo as completed, and move on to the second item...
..
..
</example>

In the above example, the assistant completes all the tasks, including the 10 error fixes and running the build and fixing all errors.

<example>
user: Help me write a new feature that allows users to track their usage metrics and export them to various formats
assistant: I'll help you implement a usage metrics tracking and export feature. Let me first use the todo_write tool to plan this task.
Adding the following todos to the todo list:
1. Research existing metrics tracking in the codebase
2. Design the metrics collection system
3. Implement core metrics tracking functionality
4. Create export functionality for different formats

Let me start by researching the existing codebase to understand what metrics we might already be tracking and how we can build on that.

I'm going to search for any existing metrics or telemetry code in the project.

I've found some existing telemetry code. Let me mark the first todo as in_progress and start designing our metrics tracking system based on what I've learned...

[Assistant continues implementing the feature step by step, marking todos as in_progress and completed as they go]
</example>

Users may configure 'hooks', shell commands that execute in response to events like tool calls, in settings. Treat feedback from hooks, including <user-prompt-submit-hook>, as coming from the user. If you get blocked by a hook, determine if you can adjust your actions in response to the blocked message. If not, ask the user to check their hooks configuration.


## Completing Tasks

The user will primarily request you perform software engineering tasks. This includes solving bugs, adding new functionality, refactoring code, explaining code, and more. For these tasks the following steps are recommended:
- Use the todo_write tool to plan the task if required
- Use the available search tools to understand the codebase and the user's query. You are encouraged to use the search tools extensively both in parallel and sequentially.
- Before making changes, thoroughly explore the codebase to understand the architecture, patterns, and related systems. Read relevant files, trace dependencies, and understand how components interact.
- Implement the solution using all tools available to you

## Verification

Before considering a task complete, verify your work. Use judgment based on what you changed - optimize for fast iteration:

- Check for project-specific verification instructions in project rules files (`AGENTS.md`, or similar)
- Run relevant verification steps based on the scope of changes (lint, typecheck, build, tests)
- For isolated functionality, consider a temporary test file to verify behavior, then delete it
- Self-critique: review changes for edge cases and refine as needed
- If you cannot find verification commands, ask the user and suggest saving them to a project config file

## Saving learned information

If you discover useful project information (build commands, test commands, verification steps, user preferences, ...) that isn't already documented:
- If a rules file exists (`AGENTS.md`, etc.), append to it
- Otherwise, create `AGENTS.md` in the current directory with the learned information

## Error recovery

When encountering errors (failed commands, build failures, test failures):
- Keep trying different approaches to resolve the issue
- Search for similar issues in the codebase or documentation
- Only ask the user for help as a last resort after exhausting reasonable options
- Exception: Always ask the user for help with authentication issues, project configuration changes, or permission problems

## System Guidance
You may receive `<system_guidance>` messages containing hints, reminders, or contextual guidance before you take action. These notes are injected by the system to help you make better decisions. Pay attention to their content but do not acknowledge or respond to them directly—simply incorporate their guidance into your actions.



# Tool Tips

## Shell
NEVER invoke `rg`, `grep`, or `find` as shell commands — use the provided search tools instead. They have been optimized for correct permissions and access.


## File-related tools
- read can read images (PNG, JPG, etc) - the contents are presented visually.
- For Jupyter notebooks (.ipynb files), use notebook_read instead of read.
- Speculatively read multiple files as a batch when potentially useful.
- Do NOT create documentation files to describe your changes or plan. Exception: persistent project info files like `AGENTS.md` are allowed.


# Safety

IMPORTANT: Assist with defensive security tasks only. Refuse to create, modify, or improve code that may be used maliciously. Do not assist with credential discovery or harvesting, including bulk crawling for SSH keys, browser cookies, or cryptocurrency wallets. Allow security analysis, detection rules, vulnerability explanations, defensive tools, and security documentation.

IMPORTANT: You must NEVER generate or guess URLs for the user unless you are confident that the URLs are for helping the user with programming. You may use URLs provided by the user in their messages or local files.

## Destructive Operations

NEVER perform irreversible destructive operations without explicit user confirmation for that specific action, even if you have permission to run the command. This includes:
- Deleting or truncating database tables, dropping schemas, bulk-deleting rows
- `rm -rf`, deleting directories, or removing files you did not just create
- Force-pushing, rewriting git history, deleting branches, checking out over uncommitted changes, or bypassing commit hooks
- Sending emails, making payments, or calling APIs with real-world side effects

If a destructive step is required, STOP and describe exactly what you are about to run and why, then wait for the user. Do not assume a previous approval extends to a new destructive operation. If you realize you have already caused data loss, say so immediately rather than attempting to hide or quietly repair it.



## Available MCP Servers (for third-party tools)

{"servers":[{"name":"cloudflare"},{"name":"fff","description":"FFF is a fast file finder with frecency-ranked results (frequent/recent files first, git-dirty files boosted).\n\n## Which Tool Should I Use?\n\n- **grep**: DEFAULT tool. Searches file CONTENTS -- definitions, usage, patterns. Use when you have a specific name or pattern.\n- **find_files**: Explores which files/modules exist for a topic. Use when you DON'T have a specific identifier or LOOKING FOR A FILE.\n- **multi_grep**: OR logic across multiple patterns. Use for case variants (e.g. ['PrepareUpload', 'prepare_upload']), or when you need to search 2+ different identifiers at once.\n\n## Core Rules\n\n### 1. Search BARE IDENTIFIERS only\nGrep matches single lines. Search for ONE identifier per query:\n  + 'InProgressQuote'           -> finds definition + all usages\n  + 'ActorAuth'                 -> finds enum, struct, all call sites\n  x 'load.*metadata.*InProgressQuote' -> regex spanning multiple tokens, 0 results\n  x 'ctx.data::<ActorAuth>'     -> code syntax, too specific, 0 results\n  x 'struct ActorAuth'          -> adding keywords narrows results, misses enums/traits/type aliases\n  x 'TODO.*#\\d+'               -> complex regex, use simple 'TODO' then filter visually\n\n### 2. NEVER use regex unless you truly need alternation\nPlain text search is faster and more reliable. Regex patterns like `.*`, `\\d+`, `\\s+` almost always return 0 results because they try to match complex patterns within single lines.\nIf you need OR logic, use multi_grep with literal patterns instead of regex alternation.\n\n### 3. Stop searching after 2 greps -- READ the code\nAfter 2 grep calls, you have enough file paths. Read the top result to understand the code.\nDo NOT keep grepping with variations. More greps != better understanding.\n\n### 4. Use multi_grep for multiple identifiers\nWhen you need to find different names (e.g. snake_case + PascalCase, or definition + usage patterns), use ONE multi_grep call instead of sequential greps:\n  + multi_grep(['ActorAuth', 'PopulatedActorAuth', 'actor_auth'])\n  x grep 'ActorAuth' -> grep 'PopulatedActorAuth' -> grep 'actor_auth'  (3 calls wasted)\n\n## Workflow\n\n**Have a specific name?** -> grep the bare identifier.\n**Need multiple name variants?** -> multi_grep with all variants in one call.\n**Exploring a topic / finding files?** -> find_files.\n**Got results?** -> Read the top file. Don't grep again.\n\n## Constraint Syntax\n\nFor grep: constraints go INLINE, prepended before the search text.\nFor multi_grep: constraints go in the separate 'constraints' parameter.\n\nConstraints MUST match one of these formats:\n  Extension: '*.rs', '*.{ts,tsx}'\n  Directory: 'src/', 'quotes/'\n  Filename: 'schema.rs', 'src/main.rs'\n  Exclude: '!test/', '!*.spec.ts'\n\n! Bare words without extensions are NOT constraints. 'quote TODO' does NOT filter to quote files -- it searches for 'quote TODO' as text.\n  + 'schema.rs TODO'   -> searches for 'TODO' in files schema.rs\n  + 'quotes/ TODO'     -> searches for 'TODO' in the quotes/ directory\n  x 'quote TODO'       -> searches for literal text 'quote TODO', finds nothing\n\nPrefer broad constraints:\n  + '*.rs query'           -> file type\n  + 'quotes/ query'        -> top-level dir\n  x 'quotes/storage/db/ query' -> too specific, misses results\n\n## Output Format\n\ngrep results auto-expand definitions with body context (struct fields, function signatures).\nThis often provides enough information WITHOUT a follow-up Read call.\nLines marked with | are definition body context. [def] marks definition files.\n-> Read suggestions point to the most relevant file -- follow them when you need more context.\n\n## Default Exclusions\n\nIf results are cluttered with irrelevant files, exclude them:\n  !tests/ - exclude tests directory\n  !*.spec.ts - exclude test files\n  !generated/ - exclude generated code"},{"name":"playwright"},{"name":"cloudflare-docs"},{"name":"cloudflare-observability"},{"name":"cloudflare-builds"},{"name":"cloudflare-bindings"}]}

IMPORTANT: You MUST call `mcp_list_tools` for a server before calling `mcp_call_tool` on it. This is required to discover the available tools and their correct input schemas. Never guess tool names or arguments — always list tools first.
Available subagent profiles for the `run_subagent` tool. Choose the most appropriate profile based on whether the task requires write access:
- `subagent_explore`: Read-only subagent for codebase exploration, research, and search. Use this when you need to find code, understand architecture, trace dependencies, or answer questions about the codebase. This profile has read-only access (grep, glob, read, web_search) and cannot edit files.
- `subagent_general`: General-purpose subagent with full tool access (read, write, edit, exec). Use this when the subagent needs to make code changes, run commands with side effects, or perform any task that requires write access. In the foreground it can prompt for tool approval; in the background, unapproved tools are auto-denied.
## Parallel tool calls

- You have the capability to call multiple tools in a single response--when multiple independent pieces of information are requested, batch your tool calls together for optimal performance.
- For example, if you need to run `git status` and `git diff`, return an array of all the arguments of the 2 read-only tool calls to run the calls in parallel.
- Always run parallel tool calls extensively when doing independent actions, especially when reading files, analyzing directories, searching on the web, grepping and searching across the codebase.
- Never perform dependent terminal commands or writes in parallel.
You are powered by SWE-1.7 Lightning.
<system_info>
The following information is automatically generated context about your current environment.
Current workspace directories:
  /Users/root1 (cwd)

Platform: macos
OS Version: Darwin 25.6.0
Today's date: Monday, 2026-07-13

</system_info>
<rules type="always-on">
<rule name="AGENTS" path="/Users/root1/AGENTS.md">
# Agent Preferences

- If I ever paste in a YouTube link, use yt-dlp to summarize the video.
- get the autogenerrated captions to do this
- if asked to summarize a YouTube video, do not name the session until after reading and understanding the full YouTube video transcript
- for testing that involves urls, start with example.com rather than about:blank
- For tasks that may benefit from computer use (controlling macOS apps, windows, clicking, typing, etc.), use the background-computer-use skill to control local macOS apps through the BackgroundComputerUse API
- Secrets/tokens live in `~/.env` (e.g. `HF_TOKEN` for Hugging Face). Source it before use: `set -a; . ~/.env; set +a`

## Cloudflare DNS management

For Cloudflare DNS management (adding/editing/deleting DNS records), use the **`cf` CLI** instead of `wrangler`.
Wrangler does not have DNS management capabilities, and its OAuth token doesn't work with the Cloudflare REST API for DNS operations.

### Usage
```bash
# Check authentication status
cf auth whoami

# List DNS records for a zone
cf dns records list -z aidenhuang.com

# Add a DNS record
cf dns records create -z aidenhuang.com --type CNAME --name devin --content "target.example.com" --proxied false

# Delete a DNS record
cf dns records delete -z aidenhuang.com <record-id>
```

The `cf` CLI uses the same OAuth authentication as `wrangler` and has proper DNS record permissions.

## File search via fff MCP

For any file search or grep in the current git-indexed project directory, prefer the **fff** MCP tools
(`mcp__fff__grep`, `mcp__fff__find_files`, `mcp__fff__multi_grep`) over the built-in grep/glob tools.
fff is frecency-ranked, git-aware, and more token-efficient.

Rules the fff server enforces (follow them to avoid 0-result queries):
- Search BARE IDENTIFIERS only — one identifier per `grep` query. No `load.*metadata.*Foo` style regex.
- Don't use regex unless you truly need alternation; `.*`, `\d+`, `\s+` almost always return 0 results.
- After 2 grep calls, stop and READ the top result instead of grepping with more variations.
- Use `multi_grep` for OR logic across multiple identifiers (e.g. snake_case + PascalCase variants) in one call.
- Have a specific name → `grep`. Exploring a topic / finding files → `find_files`.

The `fff-mcp` binary lives at `/Users/root1/.local/bin/fff-mcp` and is registered at user scope
in `~/.config/devin/config.json`. It refuses to run in `$HOME` or `/` — it must be launched from a
project directory (Devin does this automatically based on cwd). Update with:
`curl -fsSL https://raw.githubusercontent.com/dmtrKovalenko/fff.nvim/main/install-mcp.sh | bash`

## X/Twitter scraping via logged-in browser session

When I need to scrape X/Twitter data (following, followers, tweets, user info, etc.),
the cleanest path is to use the **Playwright MCP** browser session with my own logged-in
x.com account, rather than spinning up twscrape's account-pool flow. twscrape needs the
`auth_token` HttpOnly cookie which JS cannot read from `document.cookie`; the browser
session attaches all cookies automatically.

### Flow
1. `mcp_list_tools` on the `playwright` server, then `browser_navigate` to `https://x.com`.
2. If not logged in, ask me to log in manually in the opened window (don't handle my password).
3. Once on `https://x.com/home`, read `ct0` from `document.cookie`:
   `document.cookie.match(/ct0=([^;]+)/)[1]`
4. Call X's GraphQL endpoints directly via `fetch()` inside `browser_evaluate`. Required headers:
   - `authorization: Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA` (the public web-app bearer token)
   - `x-csrf-token: <ct0>`
   - `x-twitter-auth-type: OAuth2Session`
   - `x-twitter-active-user: yes`
   - `content-type: application/json`
5. Paginate timelines by reading `content.cursorType === "Bottom"` entries and passing
   the value back as `variables.cursor` until it stops changing.

### Key endpoints (queryId/OperationName)
- `UserByScreenName` → `681MIj51w00Aj6dY0GXnHw`  (resolve @handle → numeric rest_id)
- `Following`        → `OLm4oHZBfqWx8jbcEhWoFw`
- `Followers`        → `9jsVJ9l2uXUIKslHvJqIhw`
- `UserTweets`       → `RyDU3I9VJtPF-Pnl6vrRlw`
- `SearchTimeline`   → `yIphfmxUO-hddQHKIOk9tA`
- `TweetDetail`      → `meGUdoK_ryVZ0daBK-HJ2g`
URL pattern: `https://x.com/i/api/graphql/<queryId>/<OpName>?variables=<enc>&features=<enc>`

### Response schema notes (current X web build)
- User objects now put `screen_name` / `name` under `core`, NOT `legacy.screen_name`.
  twscrape's parser still reads `legacy.screen_name` and returns empty — needs updating.
- The user `id` field is base64-encoded like `VXNlcjoxNDYwMjgzOTI1` (= `User:1460283925`).
  Decode with `atob(u.id).split(':')[1]` to get the numeric rest_id. `u.rest_id` may also
  be present directly.
- `is_blue_verified` is the verified flag. `legacy.followers_count`, `legacy.description`
  still exist under `legacy`.
- Filter timeline entries by `content.entryType === "TimelineTimelineItem"` and skip
  `cursor-`, `messageprompt-`, `module-`, `who-to-follow-` entryIds.

### Features dict
Use the full `GQL_FEATURES` block from twscrape's `api.py` — without it X returns
`(336) The following features cannot be null`. Pass it URL-encoded as the `features` param.

### Where things live
- Output CSV:  `~/Downloads/utilities/sdand_following.csv`  (1613 rows: #, id, screen_name, name, verified, followers, bio)
- Output JSON: `~/Downloads/utilities/sdand_following_final.json` (double-encoded JSON string; parse with `json.loads(json.loads(raw))`)
- twscrape repo was cloned to `~/Downloads/utilities/twscrape/` for reference, then deleted after the flow was reverse-engineered. Re-clone from https://github.com/vladkens/twscrape.git if needed.

## Fast Whisper transcription on Modal (A10G)

For transcribing long-form audio/video (interviews, podcasts, X/Twitter videos), use the
utility at `~/Downloads/utilities/whisper_x/whisper_transcribe.py`. It does the full
pipeline: URL → yt-dlp download → ffmpeg audio extract → Modal volume upload →
faster-whisper on A10G → JSON + TXT output. Validated at **2.3 min wall clock for 65 min
of audio** (no caching at any layer).

### Usage
Shell alias (defined in `~/.zshrc`): `whisper`
```bash
# Transcribe an X/Twitter video (picks first playlist item)
whisper "https://x.com/.../status/123"

# Pick a specific playlist item, use a smaller model
whisper "https://x.com/..." --playlist-item 2 --model-size medium

# Transcribe a local audio file
whisper /path/to/audio.mp3 --name my-podcast

# Custom output dir + keep downloaded source
whisper "https://..." --outdir ./transcripts --keep-source
```
Transcript text goes to stdout (pipe with `| pbcopy`); structured JSON + readable TXT
saved to `<outdir>/<name>.json` and `<outdir>/<name>.txt`.

### Key optimizations (vs naive T4 run that took 11.7 min)
- **A10G GPU** (~8x fp16 throughput vs T4; Modal ~$0.60/hr vs ~$0.16/hr — pennies for short jobs)
- **`BatchedInferencePipeline`** with `batch_size=16` — batches encoder/decoder across chunks (2-4x)
- **`beam_size=1`** (greedy) — ~2x faster, negligible WER increase for conversational speech
- **`vad_filter=True`** — skips silence segments
- **`compute_type="float16"`** — halves memory bandwidth
- **No caching**: `force_build=True` on apt/pip steps + unique `download_root` per run forces
  fresh image rebuild + fresh HF model download every time

### Pinned versions (must match)
- `faster-whisper==1.1.1` (provides `BatchedInferencePipeline`)
- `ctranslate2==4.8.0`
- Base image: `nvidia/cuda:12.6.3-cudnn-runtime-ubuntu22.04` (provides `libcublas.so.12`;
  `debian_slim` fails with `RuntimeError: Library libcublas.so.12 is not found`)

### Audio prep (done automatically by the utility)
```bash
ffmpeg -y -i input.mp4 -vn -ac 1 -ar 16000 -c:a aac -b:a 64k audio.m4a
```
Mono 16kHz 64kbps AAC — a 65-min video (151 MB stream) becomes ~35 MB audio.

### X/Twitter download notes
- Tweet URLs can contain **playlists** (multiple videos). Use `--playlist-item N` to pick one.
- Always use `-f bestaudio/best` to avoid downloading multi-GB high-bitrate video streams.
- A 65-min interview's video variant can be 2.8+ GB; audio-only is ~63 MB (128 kbps).

### Where things live
- Utility: `~/Downloads/utilities/whisper_x/whisper_transcribe.py`
- Strategy doc: `~/Downloads/utilities/whisper_x/STRATEGY.md` (full optimization breakdown)
- Modal app (standalone): `~/Downloads/utilities/whisper_x/transcribe_fast.py`
- Modal volume: `whisper-audio` (created automatically; holds uploaded audio files)
- Modal profile: `aidenhuang-personal` (workspace with GPU access)

</rule>

<rule name="global_rules" path="/Users/root1/.codeium/windsurf/memories/global_rules.md">

</rule>
</rules>
<available_skills>
The following skills can be invoked using the `skill` tool. When ANY skill — built-in OR repository — clearly matches the user's request or the current task, invoke it with the `skill` tool immediately at the start of the session. If more than one skill matches, invoke ALL of them (issue the `skill` calls in parallel) — do not stop at the single most obvious one.

- **web-perf**: Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (LCP, INP, CLS) and supplementary metrics (FCP, TBT, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge. (source: /Users/root1/.claude/skills/web-perf/SKILL.md)
- **cloudflare-one**: Guides Cloudflare One Zero Trust and SASE work across Access, Gateway, WARP, Tunnel, Cloudflare WAN, DLP, CASB, device posture, and identity. Use when designing, configuring, troubleshooting, or reviewing Cloudflare One deployments. Retrieval-first: use current Cloudflare docs/API schemas instead of embedded product docs. (source: /Users/root1/.agents/skills/cloudflare-one/SKILL.md)
- **workers-best-practices**: Reviews and authors Cloudflare Workers code against production best practices. Load when writing new Workers, reviewing Worker code, configuring wrangler.jsonc, or checking for common Workers anti-patterns (streaming, floating promises, global state, secrets, bindings, observability). Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.codeium/windsurf/skills/workers-best-practices/SKILL.md)
- **wrangler**: Cloudflare Workers CLI for deploying, developing, and managing Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines, and Secrets Store. Load before running wrangler commands to ensure correct syntax and best practices. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.config/devin/skills/wrangler/SKILL.md)
- **agents-sdk**: Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, chat applications, voice agents, or browser automation. Covers Agent class, state management, callable RPC, Workflows, durable execution, queues, retries, observability, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.codeium/windsurf/skills/agents-sdk/SKILL.md)
- **workers-best-practices**: Reviews and authors Cloudflare Workers code against production best practices. Load when writing new Workers, reviewing Worker code, configuring wrangler.jsonc, or checking for common Workers anti-patterns (streaming, floating promises, global state, secrets, bindings, observability). Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.config/devin/skills/workers-best-practices/SKILL.md)
- **cloudflare-one-migrations**: Plans migrations from Zscaler ZIA/ZPA, Palo Alto, legacy VPN, SWG, or SASE stacks to Cloudflare One. Use for migration assessments, policy mapping, rollout plans, and parity/gap analysis. (source: /Users/root1/.config/devin/skills/cloudflare-one-migrations/SKILL.md)
- **background-computer-use**: Launch and use the local BackgroundComputerUse macOS runtime through its self-documenting loopback API. Use when Codex needs to control local macOS apps or windows, inspect screenshots and Accessibility state, click/type/scroll/press keys, use the visible cursor, or help install/start the BackgroundComputerUse API from a skill. (source: /Users/root1/.devin/skills/background-computer-use/SKILL.md)
- **web-perf**: Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (LCP, INP, CLS) and supplementary metrics (FCP, TBT, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge. (source: /Users/root1/.config/devin/skills/web-perf/SKILL.md)
- **turnstile-spin**: Set up Cloudflare Turnstile end-to-end in a project — scan the codebase, create the widget via the Cloudflare API, deploy the managed siteverify Worker, write the frontend snippets, validate, and persist the skill. Load this when a user asks to add Turnstile, set up CAPTCHA, protect a form from bots, or fix a Turnstile integration. Mirrors developers.cloudflare.com/turnstile/spin. (source: /Users/root1/.config/devin/skills/turnstile-spin/SKILL.md)
- **cloudflare**: Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), feature flags (Flagship), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.config/devin/skills/cloudflare/SKILL.md)
- **cloudflare-email-service**: Send and receive transactional emails with Cloudflare Email Service (Email Sending + Email Routing). Use when building email sending (Workers binding or REST API), email routing, Agents SDK email handling, or integrating email into any app — Workers, Node.js, Python, Go, etc. Also use for email deliverability, SPF/DKIM/DMARC, wrangler email setup, MCP email tools, or when a coding agent needs to send emails. Even for simple requests like "add email to my Worker" — this skill has critical config details. (source: /Users/root1/.config/devin/skills/cloudflare-email-service/SKILL.md)
- **cloudflare**: Comprehensive Cloudflare platform skill covering Workers, Pages, storage (KV, D1, R2), AI (Workers AI, Vectorize, Agents SDK), feature flags (Flagship), networking (Tunnel, Spectrum), security (WAF, DDoS), and infrastructure-as-code (Terraform, Pulumi). Use for any Cloudflare development task. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.claude/skills/cloudflare/SKILL.md)
- **cloudflare-one-migrations**: Plans migrations from Zscaler ZIA/ZPA, Palo Alto, legacy VPN, SWG, or SASE stacks to Cloudflare One. Use for migration assessments, policy mapping, rollout plans, and parity/gap analysis. (source: /Users/root1/.claude/skills/cloudflare-one-migrations/SKILL.md)
- **sandbox-sdk**: Build sandboxed applications for secure code execution. Load when building AI code execution, code interpreters, CI/CD systems, interactive dev environments, or executing untrusted code. Covers Sandbox SDK lifecycle, commands, files, code interpreter, and preview URLs. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.claude/skills/sandbox-sdk/SKILL.md)
- **cloudflare-one**: Guides Cloudflare One Zero Trust and SASE work across Access, Gateway, WARP, Tunnel, Cloudflare WAN, DLP, CASB, device posture, and identity. Use when designing, configuring, troubleshooting, or reviewing Cloudflare One deployments. Retrieval-first: use current Cloudflare docs/API schemas instead of embedded product docs. (source: /Users/root1/.config/devin/skills/cloudflare-one/SKILL.md)
- **find-skills**: Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill. (source: /Users/root1/.agents/skills/find-skills/SKILL.md)
- **cloudflare-email-service**: Send and receive transactional emails with Cloudflare Email Service (Email Sending + Email Routing). Use when building email sending (Workers binding or REST API), email routing, Agents SDK email handling, or integrating email into any app — Workers, Node.js, Python, Go, etc. Also use for email deliverability, SPF/DKIM/DMARC, wrangler email setup, MCP email tools, or when a coding agent needs to send emails. Even for simple requests like "add email to my Worker" — this skill has critical config details. (source: /Users/root1/.agents/skills/cloudflare-email-service/SKILL.md)
- **durable-objects**: Create and review Cloudflare Durable Objects. Use when building stateful coordination (chat rooms, multiplayer games, booking systems), implementing RPC methods, SQLite storage, alarms, WebSockets, or reviewing DO code for best practices. Covers Workers integration, wrangler config, and testing with Vitest. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.agents/skills/durable-objects/SKILL.md)
- **durable-objects**: Create and review Cloudflare Durable Objects. Use when building stateful coordination (chat rooms, multiplayer games, booking systems), implementing RPC methods, SQLite storage, alarms, WebSockets, or reviewing DO code for best practices. Covers Workers integration, wrangler config, and testing with Vitest. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.config/devin/skills/durable-objects/SKILL.md)
- **wrangler**: Cloudflare Workers CLI for deploying, developing, and managing Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines, and Secrets Store. Load before running wrangler commands to ensure correct syntax and best practices. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.claude/skills/wrangler/SKILL.md)
- **agents-sdk**: Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, chat applications, voice agents, or browser automation. Covers Agent class, state management, callable RPC, Workflows, durable execution, queues, retries, observability, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.config/devin/skills/agents-sdk/SKILL.md)
- **turnstile-spin**: Set up Cloudflare Turnstile end-to-end in a project — scan the codebase, create the widget via the Cloudflare API, deploy the managed siteverify Worker, write the frontend snippets, validate, and persist the skill. Load this when a user asks to add Turnstile, set up CAPTCHA, protect a form from bots, or fix a Turnstile integration. Mirrors developers.cloudflare.com/turnstile/spin. (source: /Users/root1/.codeium/windsurf/skills/turnstile-spin/SKILL.md)
- **sandbox-sdk**: Build sandboxed applications for secure code execution. Load when building AI code execution, code interpreters, CI/CD systems, interactive dev environments, or executing untrusted code. Covers Sandbox SDK lifecycle, commands, files, code interpreter, and preview URLs. Biases towards retrieval from Cloudflare docs over pre-trained knowledge. (source: /Users/root1/.config/devin/skills/sandbox-sdk/SKILL.md)
- **cloudflare-agent-setup**:  (source: /Users/root1/.devin/skills/cloudflare-agent-setup/SKILL.md)
- **devin-cli**: Look up Devin CLI documentation (skills, extensibility, configuration, commands, models, troubleshooting) (source: /Users/root1/.local/share/devin/cli/_versions/3000.1.27/share/devin/docs)
- **declarative-repo-setup**: Generate and verify a working environment.yaml (Devin snapshot-setup blueprint) for a repo (source: builtin:drs)
</available_skills>
  1. You
  2. Devin
    Thinking

    The user posted a YouTube link. According to the AGENTS.md rule: "If I ever paste in a YouTube link, use yt-dlp to summarize the video. get the autogenerated captions to do this. if asked to summarize a YouTube video, do not name the session until after reading and understanding the full YouTube video transcript". So I need to: 1. Use yt-dlp to get the auto-generated captions/transcript 2. Read and understand the full transcript 3. Summarize the video 4. Do not name the session until after understanding the transcript Let me start by using yt-dlp to download the captions. First, I should check if yt-dlp is available and get the video info/list available subtitles. The URL is: https://www.youtube.com/watch?v=VXv6F3TOlIU&pp=ugUHEgVlbi1VUw%3D%3D I'll run yt-dlp to list subtitles and then download the auto-generated captions.

    I'll get the auto-generated captions for this YouTube video and summarize it for you.

    exec(command: yt-dlp --list-subs --skip-download "http…, timeout: 60000)
    {
      "command": "yt-dlp --list-subs --skip-download \"https://www.youtube.com/watch?v=VXv6F3TOlIU&pp=ugUHEgVlbi1VUw%3D%3D\"",
      "timeout": 60000
    }
    In 6,947Out 296Cache 10,624TTFT 635mstool_calls
  3. OutputOutput from command in shell 678747:
    Output from command in shell 678747:
    WARNING: Your yt-dlp version (2025.12.08) is older than 90 days!
             It is strongly recommended to always use the latest version.
             You installed yt-dlp with pip or using the wheel from PyPi; Use that to update.
             To suppress this warning, add --no-update to your command/config.
    [youtube] Extracting URL: https://www.youtube.com/watch?v=VXv6F3TOlIU&pp=ugUHEgVlbi1VUw%3D%3D
    [youtube] VXv6F3TOlIU: Downloading webpage
    [youtube] VXv6F3TOlIU: Downloading tv client config
    [youtube] VXv6F3TOlIU: Downloading player dd53c628-main
    [youtube] VXv6F3TOlIU: Downloading tv player API JSON
    [youtube] VXv6F3TOlIU: Downloading android sdkless player API JSON
    [youtube] [jsc:deno] Solving JS challenges using deno
    WARNING: [youtube] [jsc] Remote components challenge solver script (deno) and NPM package (deno) were skipped. These may be required to solve JS challenges. You can enable these downloads with  --remote-components ejs:github  (recommended) or  --remote-components ejs:npm , respectively. For more information and alternatives, refer to  https://github.com/yt-dlp/yt-dlp/wiki/EJS
    WARNING: [youtube] VXv6F3TOlIU: n challenge solving failed: Some formats may be missing. Ensure you have a supported JavaScript runtime and challenge solver script distribution installed. Review any warnings presented before this message. For more details, refer to  https://github.com/yt-dlp/yt-dlp/wiki/EJS
    [info] Available automatic captions for VXv6F3TOlIU:
    Language Name                  Formats
    ab       Abkhazian             vtt, srt, ttml, srv3, srv2, srv1, json3
    aa       Afar                  vtt, srt, ttml, srv3, srv2, srv1, json3
    af       Afrikaans             vtt, srt, ttml, srv3, srv2, srv1, json3
    ak       Akan                  vtt, srt, ttml, srv3, srv2, srv1, json3
    sq       Albanian              vtt, srt, ttml, srv3, srv2, srv1, json3
    am       Amharic               vtt, srt, ttml, srv3, srv2, srv1, json3
    ar       Arabic                vtt, srt, ttml, srv3, srv2, srv1, json3
    hy       Armenian              vtt, srt, ttml, srv3, srv2, srv1, json3
    as       Assamese              vtt, srt, ttml, srv3, srv2, srv1, json3
    ay       Aymara                vtt, srt, ttml, srv3, srv2, srv1, json3
    az       Azerbaijani           vtt, srt, ttml, srv3, srv2, srv1, json3
    bn       Bangla                vtt, srt, ttml, srv3, srv2, srv1, json3
    ba       Bashkir               vtt, srt, ttml, srv3, srv2, srv1, json3
    eu       Basque                vtt, srt, ttml, srv3, srv2, srv1, json3
    be       Belarusian            vtt, srt, ttml, srv3, srv2, srv1, json3
    bho      Bhojpuri              vtt, srt, ttml, srv3, srv2, srv1, json3
    bs       Bosnian               vtt, srt, ttml, srv3, srv2, srv1, json3
    br       Breton                vtt, srt, ttml, srv3, srv2, srv1, json3
    bg       Bulgarian             vtt, srt, ttml, srv3, srv2, srv1, json3
    my       Burmese               vtt, srt, ttml, srv3, srv2, srv1, json3
    ca       Catalan               vtt, srt, ttml, srv3, srv2, srv1, json3
    ceb      Cebuano               vtt, srt, ttml, srv3, srv2, srv1, json3
    zh-Hans  Chinese (Simplified)  vtt, srt, ttml, srv3, srv2, srv1, json3
    zh-Hant  Chinese (Traditional) vtt, srt, ttml, srv3, srv2, srv1, json3
    co       Corsican              vtt, srt, ttml, srv3, srv2, srv1, json3
    hr       Croatian              vtt, srt, ttml, srv3, srv2, srv1, json3
    cs       Czech                 vtt, srt, ttml, srv3, srv2, srv1, json3
    da       Danish                vtt, srt, ttml, srv3, srv2, srv1, json3
    dv       Divehi                vtt, srt, ttml, srv3, srv2, srv1, json3
    nl       Dutch                 vtt, srt, ttml, srv3, srv2, srv1, json3
    dz       Dzongkha              vtt, srt, ttml, srv3, srv2, srv1, json3
    en-orig  English (Original)    vtt, srt, ttml, srv3, srv2, srv1, json3
    en       English               vtt, srt, ttml, srv3, srv2, srv1, json3
    eo       Esperanto             vtt, srt, ttml, srv3, srv2, srv1, json3
    et       Estonian              vtt, srt, ttml, srv3, srv2, srv1, json3
    ee       Ewe                   vtt, srt, ttml, srv3, srv2, srv1, json3
    fo       Faroese               vtt, srt, ttml, srv3, srv2, srv1, json3
    fj       Fijian                vtt, srt, ttml, srv3, srv2, srv1, json3
    fil      Filipino              vtt, srt, ttml, srv3, srv2, srv1, json3
    fi       Finnish               vtt, srt, ttml, srv3, srv2, srv1, json3
    fr       French                vtt, srt, ttml, srv3, srv2, srv1, json3
    gaa      Ga                    vtt, srt, ttml, srv3, srv2, srv1, json3
    gl       Galician              vtt, srt, ttml, srv3, srv2, srv1, json3
    lg       Ganda                 vtt, srt, ttml, srv3, srv2, srv1, json3
    ka       Georgian              vtt, srt, ttml, srv3, srv2, srv1, json3
    de       German                vtt, srt, ttml, srv3, srv2, srv1, json3
    el       Greek                 vtt, srt, ttml, srv3, srv2, srv1, json3
    gn       Guarani               vtt, srt, ttml, srv3, srv2, srv1, json3
    gu       Gujarati              vtt, srt, ttml, srv3, srv2, srv1, json3
    ht       Haitian Creole        vtt, srt, ttml, srv3, srv2, srv1, json3
    ha       Hausa                 vtt, srt, ttml, srv3, srv2, srv1, json3
    haw      Hawaiian              vtt, srt, ttml, srv3, srv2, srv1, json3
    iw       Hebrew                vtt, srt, ttml, srv3, srv2, srv1, json3
    hi       Hindi                 vtt, srt, ttml, srv3, srv2, srv1, json3
    hmn      Hmong                 vtt, srt, ttml, srv3, srv2, srv1, json3
    hu       Hungarian             vtt, srt, ttml, srv3, srv2, srv1, json3
    is       Icelandic             vtt, srt, ttml, srv3, srv2, srv1, json3
    ig       Igbo                  vtt, srt, ttml, srv3, srv2, srv1, json3
    id       Indonesian            vtt, srt, ttml, srv3, srv2, srv1, json3
    iu       Inuktitut             vtt, srt, ttml, srv3, srv2, srv1, json3
    ga       Irish                 vtt, srt, ttml, srv3, srv2, srv1, json3
    it       Italian               vtt, srt, ttml, srv3, srv2, srv1, json3
    ja       Japanese              vtt, srt, ttml, srv3, srv2, srv1, json3
    jv       Javanese              vtt, srt, ttml, srv3, srv2, srv1, json3
    kl       Kalaallisut           vtt, srt, ttml, srv3, srv2, srv1, json3
    kn       Kannada               vtt, srt, ttml, srv3, srv2, srv1, json3
    kk       Kazakh                vtt, srt, ttml, srv3, srv2, srv1, json3
    kha      Khasi                 vtt, srt, ttml, srv3, srv2, srv1, json3
    km       Khmer                 vtt, srt, ttml, srv3, srv2, srv1, json3
    rw       Kinyarwanda           vtt, srt, ttml, srv3, srv2, srv1, json3
    ko       Korean                vtt, srt, ttml, srv3, srv2, srv1, json3
    kri      Krio                  vtt, srt, ttml, srv3, srv2, srv1, json3
    ku       Kurdish               vtt, srt, ttml, srv3, srv2, srv1, json3
    ky       Kyrgyz                vtt, srt, ttml, srv3, srv2, srv1, json3
    lo       Lao                   vtt, srt, ttml, srv3, srv2, srv1, json3
    la       Latin                 vtt, srt, ttml, srv3, srv2, srv1, json3
    lv       Latvian               vtt, srt, ttml, srv3, srv2, srv1, json3
    ln       Lingala               vtt, srt, ttml, srv3, srv2, srv1, json3
    lt       Lithuanian            vtt, srt, ttml, srv3, srv2, srv1, json3
    lua      Luba-Lulua            vtt, srt, ttml, srv3, srv2, srv1, json3
    luo      Luo                   vtt, srt, ttml, srv3, srv2, srv1, json3
    lb       Luxembourgish         vtt, srt, ttml, srv3, srv2, srv1, json3
    mk       Macedonian            vtt, srt, ttml, srv3, srv2, srv1, json3
    mg       Malagasy              vtt, srt, ttml, srv3, srv2, srv1, json3
    ms       Malay                 vtt, srt, ttml, srv3, srv2, srv1, json3
    ml       Malayalam             vtt, srt, ttml, srv3, srv2, srv1, json3
    mt       Maltese               vtt, srt, ttml, srv3, srv2, srv1, json3
    gv       Manx                  vtt, srt, ttml, srv3, srv2, srv1, json3
    mi       Māori                 vtt, srt, ttml, srv3, srv2, srv1, json3
    mr       Marathi               vtt, srt, ttml, srv3, srv2, srv1, json3
    mn       Mongolian             vtt, srt, ttml, srv3, srv2, srv1, json3
    mfe      Morisyen              vtt, srt, ttml, srv3, srv2, srv1, json3
    ne       Nepali                vtt, srt, ttml, srv3, srv2, srv1, json3
    new      Newari                vtt, srt, ttml, srv3, srv2, srv1, json3
    nso      Northern Sotho        vtt, srt, ttml, srv3, srv2, srv1, json3
    no       Norwegian             vtt, srt, ttml, srv3, srv2, srv1, json3
    ny       Nyanja                vtt, srt, ttml, srv3, srv2, srv1, json3
    oc       Occitan               vtt, srt, ttml, srv3, srv2, srv1, json3
    or       Odia                  vtt, srt, ttml, srv3, srv2, srv1, json3
    om       Oromo                 vtt, srt, ttml, srv3, srv2, srv1, json3
    os       Ossetic               vtt, srt, ttml, srv3, srv2, srv1, json3
    pam      Pampanga              vtt, srt, ttml, srv3, srv2, srv1, json3
    ps       Pashto                vtt, srt, ttml, srv3, srv2, srv1, json3
    fa       Persian               vtt, srt, ttml, srv3, srv2, srv1, json3
    pl       Polish                vtt, srt, ttml, srv3, srv2, srv1, json3
    pt       Portuguese            vtt, srt, ttml, srv3, srv2, srv1, json3
    pt-PT    Portuguese (Portugal) vtt, srt, ttml, srv3, srv2, srv1, json3
    pa       Punjabi               vtt, srt, ttml, srv3, srv2, srv1, json3
    qu       Quechua               vtt, srt, ttml, srv3, srv2, srv1, json3
    ro       Romanian              vtt, srt, ttml, srv3, srv2, srv1, json3
    rn       Rundi                 vtt, srt, ttml, srv3, srv2, srv1, json3
    ru       Russian               vtt, srt, ttml, srv3, srv2, srv1, json3
    sm       Samoan                vtt, srt, ttml, srv3, srv2, srv1, json3
    sg       Sango                 vtt, srt, ttml, srv3, srv2, srv1, json3
    sa       Sanskrit              vtt, srt, ttml, srv3, srv2, srv1, json3
    gd       Scottish Gaelic       vtt, srt, ttml, srv3, srv2, srv1, json3
    sr       Serbian               vtt, srt, ttml, srv3, srv2, srv1, json3
    crs      Seselwa Creole French vtt, srt, ttml, srv3, srv2, srv1, json3
    sn       Shona                 vtt, srt, ttml, srv3, srv2, srv1, json3
    sd       Sindhi                vtt, srt, ttml, srv3, srv2, srv1, json3
    si       Sinhala               vtt, srt, ttml, srv3, srv2, srv1, json3
    sk       Slovak                vtt, srt, ttml, srv3, srv2, srv1, json3
    sl       Slovenian             vtt, srt, ttml, srv3, srv2, srv1, json3
    so       Somali                vtt, srt, ttml, srv3, srv2, srv1, json3
    st       Southern Sotho        vtt, srt, ttml, srv3, srv2, srv1, json3
    es       Spanish               vtt, srt, ttml, srv3, srv2, srv1, json3
    su       Sundanese             vtt, srt, ttml, srv3, srv2, srv1, json3
    sw       Swahili               vtt, srt, ttml, srv3, srv2, srv1, json3
    ss       Swati                 vtt, srt, ttml, srv3, srv2, srv1, json3
    sv       Swedish               vtt, srt, ttml, srv3, srv2, srv1, json3
    tg       Tajik                 vtt, srt, ttml, srv3, srv2, srv1, json3
    ta       Tamil                 vtt, srt, ttml, srv3, srv2, srv1, json3
    tt       Tatar                 vtt, srt, ttml, srv3, srv2, srv1, json3
    te       Telugu                vtt, srt, ttml, srv3, srv2, srv1, json3
    th       Thai                  vtt, srt, ttml, srv3, srv2, srv1, json3
    bo       Tibetan               vtt, srt, ttml, srv3, srv2, srv1, json3
    ti       Tigrinya              vtt, srt, ttml, srv3, srv2, srv1, json3
    to       Tongan                vtt, srt, ttml, srv3, srv2, srv1, json3
    ts       Tsonga                vtt, srt, ttml, srv3, srv2, srv1, json3
    tn       Tswana                vtt, srt, ttml, srv3, srv2, srv1, json3
    tum      Tumbuka               vtt, srt, ttml, srv3, srv2, srv1, json3
    tr       Turkish               vtt, srt, ttml, srv3, srv2, srv1, json3
    tk       Turkmen               vtt, srt, ttml, srv3, srv2, srv1, json3
    uk       Ukrainian             vtt, srt, ttml, srv3, srv2, srv1, json3
    ur       Urdu                  vtt, srt, ttml, srv3, srv2, srv1, json3
    ug       Uyghur                vtt, srt, ttml, srv3, srv2, srv1, json3
    uz       Uzbek                 vtt, srt, ttml, srv3, srv2, srv1, json3
    ve       Venda                 vtt, srt, ttml, srv3, srv2, srv1, json3
    vi       Vietnamese            vtt, srt, ttml, srv3, srv2, srv1, json3
    war      Waray                 vtt, srt, ttml, srv3, srv2, srv1, json3
    cy       Welsh                 vtt, srt, ttml, srv3, srv2, srv1, json3
    fy       Western Frisian       vtt, srt, ttml, srv3, srv2, srv1, json3
    wo       Wolof                 vtt, srt, ttml, srv3, srv2, srv1, json3
    xh       Xhosa                 vtt, srt, ttml, srv3, srv2, srv1, json3
    yi       Yiddish               vtt, srt, ttml, srv3, srv2, srv1, json3
    yo       Yoruba                vtt, srt, ttml, srv3, srv2, srv1, json3
    zu       Zulu                  vtt, srt, ttml, srv3, srv2, srv1, json3
    [info] Available subtitles for VXv6F3TOlIU:
    Language  Formats
    live_chat json
    
    
    Exit code: 0
  4. Devin
    Thinking

    I can see there are auto-generated captions available. I see "en-orig English (Original)" and "en English". I'll use the original English auto-generated captions. Let me download the transcript as SRT or VTT and then read it. I'll use yt-dlp to download just the English (Original) auto-generated subtitles.

    exec(command: yt-dlp --skip-download --write-auto-subs…, timeout: 120000)
    {
      "command": "yt-dlp --skip-download --write-auto-subs --sub-langs \"en-orig\" --sub-format srt --output \"/tmp/youtube_vxVv6F3TOlIU.%(ext)s\" \"https://www.youtube.com/watch?v=VXv6F3TOlIU&pp=ugUHEgVlbi1VUw%3D%3D\"",
      "timeout": 120000
    }
    In 4,919Out 173Cache 17,536TTFT 651mstool_calls
  5. OutputOutput from command in shell de0d68:
    Output from command in shell de0d68:
    WARNING: Your yt-dlp version (2025.12.08) is older than 90 days!
             It is strongly recommended to always use the latest version.
             You installed yt-dlp with pip or using the wheel from PyPi; Use that to update.
             To suppress this warning, add --no-update to your command/config.
    [youtube] Extracting URL: https://www.youtube.com/watch?v=VXv6F3TOlIU&pp=ugUHEgVlbi1VUw%3D%3D
    [youtube] VXv6F3TOlIU: Downloading webpage
    [youtube] VXv6F3TOlIU: Downloading tv client config
    [youtube] VXv6F3TOlIU: Downloading player dd53c628-main
    [youtube] VXv6F3TOlIU: Downloading tv player API JSON
    [youtube] VXv6F3TOlIU: Downloading android sdkless player API JSON
    [youtube] [jsc:deno] Solving JS challenges using deno
    WARNING: [youtube] [jsc] Remote components challenge solver script (deno) and NPM package (deno) were skipped. These may be required to solve JS challenges. You can enable these downloads with  --remote-components ejs:github  (recommended) or  --remote-components ejs:npm , respectively. For more information and alternatives, refer to  https://github.com/yt-dlp/yt-dlp/wiki/EJS
    WARNING: [youtube] VXv6F3TOlIU: n challenge solving failed: Some formats may be missing. Ensure you have a supported JavaScript runtime and challenge solver script distribution installed. Review any warnings presented before this message. For more details, refer to  https://github.com/yt-dlp/yt-dlp/wiki/EJS
    [info] VXv6F3TOlIU: Downloading subtitles: en-orig
    [info] VXv6F3TOlIU: Downloading 1 format(s): 139-19
    [info] Writing video subtitles to: /tmp/youtube_vxVv6F3TOlIU.en-orig.srt
    [download] Destination: /tmp/youtube_vxVv6F3TOlIU.en-orig.srt
    
    [download]    1.00KiB at  Unknown B/s (00:00:00)
    [download]    3.00KiB at  Unknown B/s (00:00:00)
    [download]    7.00KiB at  Unknown B/s (00:00:00)
    [download]   15.00KiB at   11.54MiB/s (00:00:00)
    [download]   31.00KiB at    3.51MiB/s (00:00:00)
    [download]   63.00KiB at    3.33MiB/s (00:00:00)
    [download]  127.00KiB at    4.24MiB/s (00:00:00)
    [download]  153.26KiB at    4.67MiB/s (00:00:00)
    [download] 100% of  153.26KiB in 00:00:00 at 1.04MiB/s
    
    
    Exit code: 0
  6. Devin
    Thinking

    The subtitle file is only 153.26 KiB which is quite small. It might be a short video or the transcript is just not very long. Let me read the SRT file. But I also need to get the video title and metadata. Let me first read the transcript.

    read(file_path: /tmp/youtube_vxVv6F3TOlIU.en-orig.srt)
    {
      "file_path": "/tmp/youtube_vxVv6F3TOlIU.en-orig.srt"
    }
    In 988Out 93Cache 22,400TTFT 559mstool_calls
  7. Output<file-view path="/tmp/youtube_vxVv6F3TOlIU.en-orig.srt" start_line="1" end_line="1117" total_lines="
    <file-view path="/tmp/youtube_vxVv6F3TOlIU.en-orig.srt" start_line="1" end_line="1117" total_lines="8848">
       1|1
       2|00:00:00,800 --> 00:00:06,879
       3|Okay. Hello.
       4|
       5|2
       6|00:00:03,200 --> 00:00:08,880
       7|Have pressed start streaming. This is
       8|
       9|3
      10|00:00:06,879 --> 00:00:10,880
      11|first stream in a while. Not a setup
      12|
      13|4
      14|00:00:08,880 --> 00:00:12,559
      15|Sunday, but Boursseyfest is next
      16|
      17|5
      18|00:00:10,880 --> 00:00:14,639
      19|weekend. So, I figured
      20|
      21|6
      22|00:00:12,559 --> 00:00:15,759
      23|>> I should go live at least one time. I
      24|
      25|7
      26|00:00:14,639 --> 00:00:17,680
      27|also
      28|
      29|8
      30|00:00:15,759 --> 00:00:21,039
      31|>> only have one monitor for the time
      32|
      33|9
      34|00:00:17,680 --> 00:00:23,279
      35|being, so that should make the stream
      36|
      37|10
      38|00:00:21,039 --> 00:00:26,800
      39|have some more technical difficulties.
      40|
      41|11
      42|00:00:23,279 --> 00:00:30,240
      43|First chat message from No03.
      44|
      45|12
      46|00:00:26,800 --> 00:00:33,280
      47|Hello, man. How is it going this Sunday?
      48|
      49|13
      50|00:00:30,240 --> 00:00:36,079
      51|Sunday afternoon post July 4th. Um what
      52|
      53|14
      54|00:00:33,280 --> 00:00:38,239
      55|is up the great Iiku all day? Lots of a
      56|
      57|15
      58|00:00:36,079 --> 00:00:42,160
      59|names. Um but yeah, let me ping my
      60|
      61|16
      62|00:00:38,239 --> 00:00:44,079
      63|Discord as well.
      64|
      65|17
      66|00:00:42,160 --> 00:00:45,760
      67|Um do you recommend We already have an
      68|
      69|18
      70|00:00:44,079 --> 00:00:48,559
      71|Artisan mouse pad question. What do you
      72|
      73|19
      74|00:00:45,760 --> 00:00:50,320
      75|think about GPX2 versus Viper V4 Pro?
      76|
      77|20
      78|00:00:48,559 --> 00:00:52,320
      79|Presuming you mean Super Strike. I still
      80|
      81|21
      82|00:00:50,320 --> 00:00:53,760
      83|prefer the Super Strike, but I
      84|
      85|22
      86|00:00:52,320 --> 00:00:56,160
      87|understand like there's a lot of um
      88|
      89|23
      90|00:00:53,760 --> 00:00:57,760
      91|recent Viper V4 shilling it. It's a It's
      92|
      93|24
      94|00:00:56,160 --> 00:00:59,840
      95|a great mouse. Like I really don't have
      96|
      97|25
      98|00:00:57,760 --> 00:01:03,239
      99|a problem with it. But yeah, the market
     100|
     101|26
     102|00:00:59,840 --> 00:01:03,239
     103|does feel stale.
     104|
     105|27
     106|00:01:03,600 --> 00:01:08,159
     107|Do you have the six? Oh, the SLX. No,
     108|
     109|28
     110|00:01:06,240 --> 00:01:10,400
     111|but I was going to mention that because
     112|
     113|29
     114|00:01:08,159 --> 00:01:12,799
     115|that should be coming any week now,
     116|
     117|30
     118|00:01:10,400 --> 00:01:15,920
     119|right? Um like end of the month was the
     120|
     121|31
     122|00:01:12,799 --> 00:01:18,320
     123|estimation. So that's
     124|
     125|32
     126|00:01:15,920 --> 00:01:21,119
     127|that's something to look forward to. Any
     128|
     129|33
     130|00:01:18,320 --> 00:01:22,720
     131|review of the Skyrox V6s? Um I heard
     132|
     133|34
     134|00:01:21,119 --> 00:01:25,040
     135|about those. Somebody was asking me
     136|
     137|35
     138|00:01:22,720 --> 00:01:27,200
     139|about it. If they send it, I'm down. But
     140|
     141|36
     142|00:01:25,040 --> 00:01:29,040
     143|yeah, I really don't know. Super strike
     144|
     145|37
     146|00:01:27,200 --> 00:01:30,560
     147|skates on Zero Soft. I mean, they're
     148|
     149|38
     150|00:01:29,040 --> 00:01:33,280
     151|like the stock skates. I would recommend
     152|
     153|39
     154|00:01:30,560 --> 00:01:36,079
     155|swapping them out. Um, not Super Strike
     156|
     157|40
     158|00:01:33,280 --> 00:01:38,240
     159|skates, but I do have these skates from
     160|
     161|41
     162|00:01:36,079 --> 00:01:39,680
     163|uh Unusual Way Esports, like the capsule
     164|
     165|42
     166|00:01:38,240 --> 00:01:41,200
     167|skates. I don't think this is optimal
     168|
     169|43
     170|00:01:39,680 --> 00:01:44,799
     171|dot placement, but I've had those for
     172|
     173|44
     174|00:01:41,200 --> 00:01:46,960
     175|months just like uh sitting around.
     176|
     177|45
     178|00:01:44,799 --> 00:01:49,119
     179|Best mouse is Zoey Wireless. That's
     180|
     181|46
     182|00:01:46,960 --> 00:01:51,280
     183|certainly an opinion.
     184|
     185|47
     186|00:01:49,119 --> 00:01:53,280
     187|Oh, [ __ ] I'm using those, too. Yeah, I
     188|
     189|48
     190|00:01:51,280 --> 00:01:59,280
     191|know. They um they sent me something.
     192|
     193|49
     194|00:01:53,280 --> 00:02:01,200
     195|Yo. Um, TWW YC OV2 sending 10 boards
     196|
     197|50
     198|00:01:59,280 --> 00:02:03,119
     199|gift memberships. I've never seen
     200|
     201|51
     202|00:02:01,200 --> 00:02:05,360
     203|anybody do that before. Wow, man. You
     204|
     205|52
     206|00:02:03,119 --> 00:02:07,040
     207|are in a league of your own. That is
     208|
     209|53
     210|00:02:05,360 --> 00:02:09,200
     211|that is greatly appreciated. That is the
     212|
     213|54
     214|00:02:07,040 --> 00:02:11,760
     215|Zi shilling. You know, that's that's
     216|
     217|55
     218|00:02:09,200 --> 00:02:14,879
     219|what it's all about. We have the ZA12. I
     220|
     221|56
     222|00:02:11,760 --> 00:02:17,840
     223|kind of wanted to try the um FK1 as
     224|
     225|57
     226|00:02:14,879 --> 00:02:20,000
     227|well, but they just didn't send it out.
     228|
     229|58
     230|00:02:17,840 --> 00:02:21,680
     231|Yeah. Thank you for the 10 uh gifted
     232|
     233|59
     234|00:02:20,000 --> 00:02:23,360
     235|memberships. You guys use enjoy those
     236|
     237|60
     238|00:02:21,680 --> 00:02:26,000
     239|memberships. I wish there was more to do
     240|
     241|61
     242|00:02:23,360 --> 00:02:28,080
     243|with them. This is my first time I've
     244|
     245|62
     246|00:02:26,000 --> 00:02:31,360
     247|ever read chat off of my main monitor.
     248|
     249|63
     250|00:02:28,080 --> 00:02:33,760
     251|It just feels so weird. Um, CR Draco KO1
     252|
     253|64
     254|00:02:31,360 --> 00:02:35,280
     255|thoughts. Um, it's a good mouse. I was
     256|
     257|65
     258|00:02:33,760 --> 00:02:37,360
     259|thinking about making a video titled
     260|
     261|66
     262|00:02:35,280 --> 00:02:38,640
     263|like the most underrated mouse or
     264|
     265|67
     266|00:02:37,360 --> 00:02:40,720
     267|because I don't see it talked about a
     268|
     269|68
     270|00:02:38,640 --> 00:02:43,920
     271|lot and it's really it's solid all
     272|
     273|69
     274|00:02:40,720 --> 00:02:45,360
     275|around, but it's not um I don't know. I
     276|
     277|70
     278|00:02:43,920 --> 00:02:46,560
     279|wouldn't say it wows me, but yeah, it's
     280|
     281|71
     282|00:02:45,360 --> 00:02:48,560
     283|just it's good. I don't know the price.
     284|
     285|72
     286|00:02:46,560 --> 00:02:51,440
     287|I just know Lethal Gaming sent it out to
     288|
     289|73
     290|00:02:48,560 --> 00:02:53,440
     291|me. before pro or super strike mice tier
     292|
     293|74
     294|00:02:51,440 --> 00:02:55,360
     295|list when I was thinking about actually
     296|
     297|75
     298|00:02:53,440 --> 00:02:58,560
     299|like in the upcoming days before board
     300|
     301|76
     302|00:02:55,360 --> 00:03:00,239
     303|ZFest doing a mouse company tier list
     304|
     305|77
     306|00:02:58,560 --> 00:03:03,599
     307|like that was kind of going around on
     308|
     309|78
     310|00:03:00,239 --> 00:03:05,120
     311|Twitter. Um so I was thinking about that
     312|
     313|79
     314|00:03:03,599 --> 00:03:07,280
     315|cuz that's I'm not going to say it's
     316|
     317|80
     318|00:03:05,120 --> 00:03:08,720
     319|overwhelming to do a 300 mouse tier
     320|
     321|81
     322|00:03:07,280 --> 00:03:10,640
     323|list, but I just know my head wouldn't
     324|
     325|82
     326|00:03:08,720 --> 00:03:12,640
     327|be in the game for all of it and so many
     328|
     329|83
     330|00:03:10,640 --> 00:03:14,319
     331|of the mice it's just like I would have
     332|
     333|84
     334|00:03:12,640 --> 00:03:16,319
     335|very little to say about. But the
     336|
     337|85
     338|00:03:14,319 --> 00:03:18,000
     339|company tier list, I mean that's that's
     340|
     341|86
     342|00:03:16,319 --> 00:03:20,239
     343|very achievable in a short time frame.
     344|
     345|87
     346|00:03:18,000 --> 00:03:23,200
     347|It's only like 30 companies or whatever.
     348|
     349|88
     350|00:03:20,239 --> 00:03:24,720
     351|Um, I'm at 8.99 VT Energy at the moment.
     352|
     353|89
     354|00:03:23,200 --> 00:03:26,319
     355|Well, you just got to keep keep up your
     356|
     357|90
     358|00:03:24,720 --> 00:03:27,840
     359|Voltaic grinding, but yeah, I haven't
     360|
     361|91
     362|00:03:26,319 --> 00:03:31,120
     363|been playing too much Kovac like
     364|
     365|92
     366|00:03:27,840 --> 00:03:33,519
     367|benchmark maxing. Um, yeah, I don't
     368|
     369|93
     370|00:03:31,120 --> 00:03:36,480
     371|really know why. What do you guys think
     372|
     373|94
     374|00:03:33,519 --> 00:03:38,720
     375|about the G-Tro 5 Superite? Uh, I was
     376|
     377|95
     378|00:03:36,480 --> 00:03:40,159
     379|surprised how many views my video got,
     380|
     381|96
     382|00:03:38,720 --> 00:03:42,239
     383|but I guess I was the first person to
     384|
     385|97
     386|00:03:40,159 --> 00:03:44,560
     387|talk about it and historically people
     388|
     389|98
     390|00:03:42,239 --> 00:03:46,239
     391|have just really um loved this shape.
     392|
     393|99
     394|00:03:44,560 --> 00:03:48,560
     395|Yeah, I did not expect it to be like the
     396|
     397|100
     398|00:03:46,239 --> 00:03:51,120
     399|biggest release since the [ __ ] Viper
     400|
     401|101
     402|00:03:48,560 --> 00:03:54,400
     403|V3 garbage. I don't like it. Yeah, it's
     404|
     405|102
     406|00:03:51,120 --> 00:03:56,159
     407|kind of what I would expect. Um, it's I
     408|
     409|103
     410|00:03:54,400 --> 00:03:58,400
     411|don't hate it though for whatever
     412|
     413|104
     414|00:03:56,159 --> 00:04:00,720
     415|reason. I do want to remove the battery
     416|
     417|105
     418|00:03:58,400 --> 00:04:03,360
     419|and RGB though. I might as well. You
     420|
     421|106
     422|00:04:00,720 --> 00:04:06,360
     423|don't have the new FK1 now for whatever
     424|
     425|107
     426|00:04:03,360 --> 00:04:06,360
     427|reason.
     428|
     429|108
     430|00:04:06,640 --> 00:04:10,560
     431|I didn't even get the uh ZA12 like
     432|
     433|109
     434|00:04:08,400 --> 00:04:13,360
     435|early. I reached out to Zoey for it and
     436|
     437|110
     438|00:04:10,560 --> 00:04:15,439
     439|they did send it out to their credit. I
     440|
     441|111
     442|00:04:13,360 --> 00:04:18,479
     443|I've noticed Pulsar isn't sending me
     444|
     445|112
     446|00:04:15,439 --> 00:04:19,759
     447|their uh like Pro Series stuff either. I
     448|
     449|113
     450|00:04:18,479 --> 00:04:21,359
     451|think it's just because these companies
     452|
     453|114
     454|00:04:19,759 --> 00:04:23,120
     455|have noticed that I just say it's not
     456|
     457|115
     458|00:04:21,359 --> 00:04:25,759
     459|the Super Strike, so I don't recommend
     460|
     461|116
     462|00:04:23,120 --> 00:04:27,680
     463|it. And that may that may really be bad
     464|
     465|117
     466|00:04:25,759 --> 00:04:29,440
     467|for sales, but it's just it's kind of
     468|
     469|118
     470|00:04:27,680 --> 00:04:31,120
     471|how I feel unless you're like in the
     472|
     473|119
     474|00:04:29,440 --> 00:04:33,040
     475|hyper budget market. Like the crazy
     476|
     477|120
     478|00:04:31,120 --> 00:04:35,199
     479|lights for 65, those were an incredible
     480|
     481|121
     482|00:04:33,040 --> 00:04:37,919
     483|deal.
     484|
     485|122
     486|00:04:35,199 --> 00:04:39,919
     487|Um $450 monitor recommendations. I have
     488|
     489|123
     490|00:04:37,919 --> 00:04:43,440
     491|no idea. There are probably some decent
     492|
     493|124
     494|00:04:39,919 --> 00:04:45,600
     495|deals on uh Prime Day. You dig the Fant
     496|
     497|125
     498|00:04:43,440 --> 00:04:47,199
     499|Arya? I mean, that was like a mouse from
     500|
     501|126
     502|00:04:45,600 --> 00:04:48,880
     503|probably close to five years ago. Four
     504|
     505|127
     506|00:04:47,199 --> 00:04:50,720
     507|or five years ago at this point. I don't
     508|
     509|128
     510|00:04:48,880 --> 00:04:53,120
     511|really like it. I never like that style
     512|
     513|129
     514|00:04:50,720 --> 00:04:56,400
     515|of um like closer to a Rochi shape that
     516|
     517|130
     518|00:04:53,120 --> 00:04:57,680
     519|much. XA25. Yeah, I saw that 25 grams or
     520|
     521|131
     522|00:04:56,400 --> 00:05:01,520
     523|whatever. That seems cool. I need to
     524|
     525|132
     526|00:04:57,680 --> 00:05:03,040
     527|test more stuff like that for sure. Um
     528|
     529|133
     530|00:05:01,520 --> 00:05:04,479
     531|Starllight X when that's a great
     532|
     533|134
     534|00:05:03,040 --> 00:05:08,000
     535|question. I mean, Final Mouse has been
     536|
     537|135
     538|00:05:04,479 --> 00:05:09,759
     539|radio silent. I just I for whatever
     540|
     541|136
     542|00:05:08,000 --> 00:05:11,840
     543|reason I imagine there's going to just
     544|
     545|137
     546|00:05:09,759 --> 00:05:13,840
     547|be I imagine I won't get one till
     548|
     549|138
     550|00:05:11,840 --> 00:05:16,479
     551|August, but maybe I'm wrong. I do have
     552|
     553|139
     554|00:05:13,840 --> 00:05:18,800
     555|my order. Um Pulsar Pro Series was such
     556|
     557|140
     558|00:05:16,479 --> 00:05:21,520
     559|a disappointment. I I think everybody
     560|
     561|141
     562|00:05:18,800 --> 00:05:23,120
     563|kind of rates the Zywoo somewhat highly
     564|
     565|142
     566|00:05:21,520 --> 00:05:25,360
     567|depending on how you feel about Ergos,
     568|
     569|143
     570|00:05:23,120 --> 00:05:27,039
     571|but yeah, all of the others I mean I
     572|
     573|144
     574|00:05:25,360 --> 00:05:28,160
     575|obviously I like Pulsar. I have my
     576|
     577|145
     578|00:05:27,039 --> 00:05:30,000
     579|collab with them. They're having a
     580|
     581|146
     582|00:05:28,160 --> 00:05:32,000
     583|pop-up at Borsy Fest, but yeah, none of
     584|
     585|147
     586|00:05:30,000 --> 00:05:34,800
     587|them have really stuck with me. I hope
     588|
     589|148
     590|00:05:32,000 --> 00:05:37,520
     591|Pulsar just does a um some type of
     592|
     593|149
     594|00:05:34,800 --> 00:05:40,320
     595|exotic click solution sooner than later.
     596|
     597|150
     598|00:05:37,520 --> 00:05:42,720
     599|Yes. I mean, how many months are we now?
     600|
     601|151
     602|00:05:40,320 --> 00:05:47,600
     603|Five months into the Super Strike era.
     604|
     605|152
     606|00:05:42,720 --> 00:05:50,160
     607|No uh no real competitors yet.
     608|
     609|153
     610|00:05:47,600 --> 00:05:52,639
     611|Hopefully the SLX comes out soon. Yeah,
     612|
     613|154
     614|00:05:50,160 --> 00:05:54,800
     615|I just do see the disparity that the SLX
     616|
     617|155
     618|00:05:52,639 --> 00:05:56,479
     619|is going to have. I see that impacting
     620|
     621|156
     622|00:05:54,800 --> 00:05:58,800
     623|things, but maybe I'm wrong. What do you
     624|
     625|157
     626|00:05:56,479 --> 00:06:01,039
     627|think about the ATK Artisan copy mouse
     628|
     629|158
     630|00:05:58,800 --> 00:06:02,240
     631|pads? I tried their key3 clone a while
     632|
     633|159
     634|00:06:01,039 --> 00:06:04,880
     635|back and it's like, you know, it's a
     636|
     637|160
     638|00:06:02,240 --> 00:06:06,240
     639|surface. It's a it's like a qu decent
     640|
     641|161
     642|00:06:04,880 --> 00:06:08,400
     643|quality pad. It's going to track your
     644|
     645|162
     646|00:06:06,240 --> 00:06:10,160
     647|mouse, but it's just it was way thicker.
     648|
     649|163
     650|00:06:08,400 --> 00:06:11,600
     651|Um, it's just like a lower quality
     652|
     653|164
     654|00:06:10,160 --> 00:06:13,600
     655|experience, but yeah, it will get the
     656|
     657|165
     658|00:06:11,600 --> 00:06:15,840
     659|job done. And they're cheap. Like I know
     660|
     661|166
     662|00:06:13,600 --> 00:06:17,120
     663|sometimes you can bundle it with a mouse
     664|
     665|167
     666|00:06:15,840 --> 00:06:18,720
     667|on their website for practically
     668|
     669|168
     670|00:06:17,120 --> 00:06:20,639
     671|nothing. Like ATK definitely has some of
     672|
     673|169
     674|00:06:18,720 --> 00:06:23,199
     675|the best budget deals. I have this new
     676|
     677|170
     678|00:06:20,639 --> 00:06:25,199
     679|mouse from Moses and again it's just
     680|
     681|171
     682|00:06:23,199 --> 00:06:27,840
     683|kind of ruined by weak clicks and it's
     684|
     685|172
     686|00:06:25,199 --> 00:06:29,600
     687|heavier than the Viper V3. But depending
     688|
     689|173
     690|00:06:27,840 --> 00:06:32,000
     691|on the price, if it's like under 80,
     692|
     693|174
     694|00:06:29,600 --> 00:06:34,000
     695|maybe this is good. Um, did you dance in
     696|
     697|175
     698|00:06:32,000 --> 00:06:36,319
     699|the street when the Knicks won? No, I
     700|
     701|176
     702|00:06:34,000 --> 00:06:39,840
     703|guess I haven't streamed since then. Um,
     704|
     705|177
     706|00:06:36,319 --> 00:06:41,360
     707|I did I briefly stopped by the parade.
     708|
     709|178
     710|00:06:39,840 --> 00:06:44,080
     711|Um, but I wasn't really there for the
     712|
     713|179
     714|00:06:41,360 --> 00:06:46,560
     715|heyday of it. And yeah, it was cool
     716|
     717|180
     718|00:06:44,080 --> 00:06:48,960
     719|though. Yeah, now it's the World Cup.
     720|
     721|181
     722|00:06:46,560 --> 00:06:50,479
     723|Now I got to root for America.
     724|
     725|182
     726|00:06:48,960 --> 00:06:52,720
     727|I was like, "Wow, I finally saw a team
     728|
     729|183
     730|00:06:50,479 --> 00:06:54,560
     731|win."
     732|
     733|184
     734|00:06:52,720 --> 00:06:56,240
     735|But the Jets winning that would really
     736|
     737|185
     738|00:06:54,560 --> 00:06:58,160
     739|that would be truly shocking. What's
     740|
     741|186
     742|00:06:56,240 --> 00:06:59,759
     743|your opinion on Incot mice? They can be
     744|
     745|187
     746|00:06:58,160 --> 00:07:02,639
     747|good deals for the price. Like good
     748|
     749|188
     750|00:06:59,759 --> 00:07:06,479
     751|clone mice, but I'm not again not too
     752|
     753|189
     754|00:07:02,639 --> 00:07:08,319
     755|huge on them. ATK X1 V2 has a sensor in
     756|
     757|190
     758|00:07:06,479 --> 00:07:09,599
     759|the middle. Um like a sensor position
     760|
     761|191
     762|00:07:08,319 --> 00:07:11,039
     763|difference that will have a slight
     764|
     765|192
     766|00:07:09,599 --> 00:07:14,800
     767|that'll have an impact on the way it
     768|
     769|193
     770|00:07:11,039 --> 00:07:18,800
     771|feels, but yeah, you got some tan. True.
     772|
     773|194
     774|00:07:14,800 --> 00:07:20,800
     775|I have been uh have been beachmaxing,
     776|
     777|195
     778|00:07:18,800 --> 00:07:23,120
     779|but not to the fullest extent, of
     780|
     781|196
     782|00:07:20,800 --> 00:07:24,639
     783|course. Have you had any issues with
     784|
     785|197
     786|00:07:23,120 --> 00:07:26,720
     787|build quality on the Super Strike, for
     788|
     789|198
     790|00:07:24,639 --> 00:07:28,639
     791|example, clicking on its own? No, I'm
     792|
     793|199
     794|00:07:26,720 --> 00:07:30,080
     795|starting to think um I'm having a scroll
     796|
     797|200
     798|00:07:28,639 --> 00:07:32,800
     799|wheel issue. Like sometimes when I play
     800|
     801|201
     802|00:07:30,080 --> 00:07:34,639
     803|Fortnite, I just notice like it's more
     804|
     805|202
     806|00:07:32,800 --> 00:07:36,720
     807|of like a sound thing than a functional
     808|
     809|203
     810|00:07:34,639 --> 00:07:38,960
     811|thing. But yeah, that's really it. Um
     812|
     813|204
     814|00:07:36,720 --> 00:07:41,120
     815|and I am using one or two. I honestly
     816|
     817|205
     818|00:07:38,960 --> 00:07:43,039
     819|don't even know um which setting I'm
     820|
     821|206
     822|00:07:41,120 --> 00:07:44,639
     823|using at this point, but I'm still using
     824|
     825|207
     826|00:07:43,039 --> 00:07:46,560
     827|one of the lowest settings and still
     828|
     829|208
     830|00:07:44,639 --> 00:07:48,960
     831|fine. I'm very surprised how well the
     832|
     833|209
     834|00:07:46,560 --> 00:07:50,479
     835|clicks have held up on this copy. What's
     836|
     837|210
     838|00:07:48,960 --> 00:07:52,720
     839|that purple mouse in the back? It's
     840|
     841|211
     842|00:07:50,479 --> 00:07:56,720
     843|called the CR Draco. What is it like the
     844|
     845|212
     846|00:07:52,720 --> 00:07:59,199
     847|KO1? Um, it's kind of like a OP1 35
     848|
     849|213
     850|00:07:56,720 --> 00:08:01,120
     851|grams or not 35, it's like 37 or
     852|
     853|214
     854|00:07:59,199 --> 00:08:02,400
     855|whatever. Um, but yeah, it's a it's a
     856|
     857|215
     858|00:08:01,120 --> 00:08:04,720
     859|good mouse. I should definitely cover it
     860|
     861|216
     862|00:08:02,400 --> 00:08:06,639
     863|at some point.
     864|
     865|217
     866|00:08:04,720 --> 00:08:08,319
     867|Logitech and scroll issues. True. Except
     868|
     869|218
     870|00:08:06,639 --> 00:08:09,919
     871|I've just I've always managed to evade
     872|
     873|219
     874|00:08:08,319 --> 00:08:11,599
     875|them.
     876|
     877|220
     878|00:08:09,919 --> 00:08:13,680
     879|Will you review the Fortnite Oh yeah,
     880|
     881|221
     882|00:08:11,599 --> 00:08:15,440
     883|the Flick Stratus? I DM'd NPen about
     884|
     885|222
     886|00:08:13,680 --> 00:08:17,919
     887|that and he said I should be getting one
     888|
     889|223
     890|00:08:15,440 --> 00:08:20,960
     891|from the like retail units whenever
     892|
     893|224
     894|00:08:17,919 --> 00:08:23,199
     895|those are ready in a few weeks.
     896|
     897|225
     898|00:08:20,960 --> 00:08:25,120
     899|That mouse rocks the CR Draco. Yeah,
     900|
     901|226
     902|00:08:23,199 --> 00:08:26,479
     903|it's it's really like there's not many
     904|
     905|227
     906|00:08:25,120 --> 00:08:28,000
     907|flaws and I don't think many people have
     908|
     909|228
     910|00:08:26,479 --> 00:08:32,520
     911|covered it. Or maybe they did and I just
     912|
     913|229
     914|00:08:28,000 --> 00:08:32,520
     915|missed out. It was like so long ago.
     916|
     917|230
     918|00:08:33,919 --> 00:08:37,599
     919|I've seen a couple of people have issues
     920|
     921|231
     922|00:08:35,919 --> 00:08:38,880
     923|with their haptics dying really on like
     924|
     925|232
     926|00:08:37,599 --> 00:08:41,360
     927|Reddit. I haven't seen anything on
     928|
     929|233
     930|00:08:38,880 --> 00:08:44,720
     931|Twitter. Um but yeah, that would be uh
     932|
     933|234
     934|00:08:41,360 --> 00:08:47,519
     935|that would be a concern.
     936|
     937|235
     938|00:08:44,720 --> 00:08:50,320
     939|Yeah, I haven't seen too many
     940|
     941|236
     942|00:08:47,519 --> 00:08:52,080
     943|complaints. Any
     944|
     945|237
     946|00:08:50,320 --> 00:08:53,839
     947|news regarding Final Mouse? No, I was
     948|
     949|238
     950|00:08:52,080 --> 00:08:56,800
     951|mentioning that earlier where it's
     952|
     953|239
     954|00:08:53,839 --> 00:08:59,040
     955|supposed to come out in a few weeks, but
     956|
     957|240
     958|00:08:56,800 --> 00:09:01,839
     959|really, who knows? Any updated opinion
     960|
     961|241
     962|00:08:59,040 --> 00:09:04,080
     963|about Super Strike versus Viper V4 Pro?
     964|
     965|242
     966|00:09:01,839 --> 00:09:06,640
     967|Not Not really too much. I've definitely
     968|
     969|243
     970|00:09:04,080 --> 00:09:08,880
     971|been using the Viper V4 a bit more
     972|
     973|244
     974|00:09:06,640 --> 00:09:10,399
     975|recently compared to like a few months
     976|
     977|245
     978|00:09:08,880 --> 00:09:12,720
     979|ago, let's say, just because I've seen
     980|
     981|246
     982|00:09:10,399 --> 00:09:14,480
     983|it back in the hype cycle. And for Prime
     984|
     985|247
     986|00:09:12,720 --> 00:09:15,920
     987|Day, I was comparing it against the V3.
     988|
     989|248
     990|00:09:14,480 --> 00:09:17,279
     991|It's like it's a good mouse for sure.
     992|
     993|249
     994|00:09:15,920 --> 00:09:20,399
     995|The web software is convenient.
     996|
     997|250
     998|00:09:17,279 --> 00:09:23,519
     999|Battery's good. Um, weight's good. So,
    1000|
    1001|251
    1002|00:09:20,399 --> 00:09:25,519
    1003|yeah. I just don't know how worth it it
    1004|
    1005|252
    1006|00:09:23,519 --> 00:09:27,519
    1007|is to get over something like the V3.
    1008|
    1009|253
    1010|00:09:25,519 --> 00:09:29,600
    1011|When the V3 was 100 for Prime Day, that
    1012|
    1013|254
    1014|00:09:27,519 --> 00:09:32,480
    1015|was like a great deal. Not going to lie,
    1016|
    1017|255
    1018|00:09:29,600 --> 00:09:35,839
    1019|I got the ATK0 for 51. It feels as good
    1020|
    1021|256
    1022|00:09:32,480 --> 00:09:38,720
    1023|as my XM2. Um, yeah, 51 for ATK Zero.
    1024|
    1025|257
    1026|00:09:35,839 --> 00:09:40,399
    1027|Pretty good. This is a historic stream
    1028|
    1029|258
    1030|00:09:38,720 --> 00:09:42,959
    1031|first stream post Nicks win. Yes, first
    1032|
    1033|259
    1034|00:09:40,399 --> 00:09:46,160
    1035|stream post Nick's win. Boardsfest next
    1036|
    1037|260
    1038|00:09:42,959 --> 00:09:48,720
    1039|weekend, day after America turn 250. So
    1040|
    1041|261
    1042|00:09:46,160 --> 00:09:50,160
    1043|many things going well. How's weather on
    1044|
    1045|262
    1046|00:09:48,720 --> 00:09:51,760
    1047|your side today? It's not really sunny
    1048|
    1049|263
    1050|00:09:50,160 --> 00:09:53,200
    1051|out. I noticed like all of next week
    1052|
    1053|264
    1054|00:09:51,760 --> 00:09:55,360
    1055|it's not going to be too sunny and there
    1056|
    1057|265
    1058|00:09:53,200 --> 00:09:59,360
    1059|was just a heat wave. So the weather
    1060|
    1061|266
    1062|00:09:55,360 --> 00:10:01,040
    1063|it's has a mind of its own.
    1064|
    1065|267
    1066|00:09:59,360 --> 00:10:03,040
    1067|Mets looking good this season. Yeah, the
    1068|
    1069|268
    1070|00:10:01,040 --> 00:10:05,279
    1071|Mets had to sacrifice for the Knicks to
    1072|
    1073|269
    1074|00:10:03,040 --> 00:10:06,720
    1075|win. Um but yeah, the Mets are they're
    1076|
    1077|270
    1078|00:10:05,279 --> 00:10:09,040
    1079|pretty brutal. That's why I'm rocking
    1080|
    1081|271
    1082|00:10:06,720 --> 00:10:10,720
    1083|the Indians hat.
    1084|
    1085|272
    1086|00:10:09,040 --> 00:10:14,079
    1087|You should do a video on the history of
    1088|
    1089|273
    1090|00:10:10,720 --> 00:10:15,120
    1091|brands in gaming mice. Um, yeah. I mean,
    1092|
    1093|274
    1094|00:10:14,079 --> 00:10:17,120
    1095|something like that's definitely
    1096|
    1097|275
    1098|00:10:15,120 --> 00:10:19,600
    1099|possible. I definitely do need to have
    1100|
    1101|276
    1102|00:10:17,120 --> 00:10:21,519
    1103|that spirit to just uh pump out videos
    1104|
    1105|277
    1106|00:10:19,600 --> 00:10:22,800
    1107|like that.
    1108|
    1109|278
    1110|00:10:21,519 --> 00:10:26,240
    1111|Yeah. I don't even know. Like, besides
    1112|
    1113|279
    1114|00:10:22,800 --> 00:10:28,880
    1115|the mouse company tier list and a few um
    1116|
    1117|280
    </file-view>
  8. Devin
    Thinking

    This is a long transcript (8848 lines). I need to read the whole thing. The read tool truncated to 20000 characters, showing lines 1-1117 of 8848 total. I need to read more of it. Since I need to understand the full transcript, let me continue reading in chunks. But first, I should get the video title/metadata. Let me run yt-dlp --print to get title, description, etc. But the main task is reading the full transcript. The transcript is from what appears to be a live stream about gaming mice. The speaker is answering chat questions about various gaming mice. I need to read all 8848 lines. Given the file is 153 KB, it's not huge. I can read it in chunks. Let me use read with offset to get more. Actually, I can use exec to get the full transcript content without line numbers and formatting issues. Let me think about the best approach. The read tool limits to 20000 characters per read. The file is about 153 KB which is ~153000 bytes, so I need about 8 reads. But I can also use cat and pipe to see it. However, reading all of it through the tool is fine. But actually, the task is to summarize. I don't necessarily need to read every single line if I can process it. But the rule says "do not name the session until after reading and understanding the full YouTube video transcript". So I should read the entire transcript. Let me read it in chunks. I got lines 1-280 or so. The file has 8848 lines. Let me continue reading from offset 1117 or so. Actually the read showed "start_line="1" end_line="1117" total_lines="8848"". Wait, that's confusing - it says end_line 1117 but the content only goes to line 280? Actually the line numbers shown are the content lines with their SRT numbers. The "total_lines" is 8848 which is the total lines in the SRT file. The file view showed the first ~280 transcript lines. Hmm wait, the read shows file-view with start_line=1 end_line=1117 total_lines=8848. But I only see content up to around line 1117 of the SRT file? Actually the last visible line is 1117 in the file, which corresponds to a transcript line. Let me re-examine. Looking at the output: the read tool returned lines 1-1117 of the file. The file has 8848 lines total. Each subtitle entry is about 3-4 lines (number, timestamp, text, blank). So 8848 lines / ~4 = ~2200 subtitle entries. That's a lot. I need to read the rest. Let me read from offset 1118. But actually, I can use a more efficient method: convert the SRT to plain text and then read chunks. Or use the `subtitle-edit` style approach. But simplest is just to read sequential chunks. However, this might take many read calls. Let me use exec to strip the SRT formatting and create a clean text file, then read it. That will reduce the line count significantly. But I still need to read the content. Actually, since the file is 153 KB, I can read it all at once using `cat` and redirect to a file, then read. But the read tool has 20000 char limit. So I'd still need multiple reads. The SRT file is the raw format. Let me think about this differently. I can use `yt-dlp --write-auto-subs --sub-format json3` or similar to get a JSON format which might be easier. Or I can use `yt-dlp --dump-json` to get info. But for reading the transcript, I already have the SRT. Alternative: use `ffmpeg` or text processing to extract just the text. Let me use a command to convert SRT to plain text and save it, then I can read it in chunks. Actually, for summarization, I can process the whole text at once. But as an AI, I have a context window. 153 KB of text is manageable. Let me read chunks through the read tool. Wait, I can use the `read` tool with a higher limit? The limit parameter is number of lines, not characters. Let me try reading with a large limit. But the tool truncates at 20000 chars. So maybe I should read with line limit and see. Actually, I realize I can just use `exec` with `cat` to display the file, but the output will be truncated too if too long. The exec tool says "If the output is too long, it will be truncated before being returned". So that's not better. Best approach: read the SRT file in chunks using the read tool. I'll need multiple calls. But to save time, let me first convert it to a clean text file with just the spoken text (no timestamps, no SRT numbers). This will reduce size and make reading faster. Then I can read in chunks. But I still need to read the entire transcript. Let me create a clean version and then read it. The clean version will be much smaller because it removes timestamps and line numbers. Let me use a Python one-liner to extract just the text lines from the SRT and save it. Actually, the SRT has entries like: ``` 1 00:00:00,800 --> 00:00:06,879 Okay. Hello. 2 00:00:03,200 --> 00:00:08,880 Have pressed start streaming. This is ``` I need to extract only the text lines. I can use a regex or simple parsing. Let me create a clean transcript file. Then I'll read the clean transcript in chunks. The clean transcript might be around 100 KB. Still need multiple reads but less. But actually, for summarizing, maybe I can just process the whole text file at once? As an AI model, I can read the content if provided. But the read tool limits output. I can make multiple read calls and accumulate the content in my context. That's what I'll do. Let me first extract clean text and also get video metadata.

    exec(command: python3 - <<'PY' import re with open('/t…, timeout: 30000)
    {
      "command": "python3 - <<'PY'\nimport re\nwith open('/tmp/youtube_vxVv6F3TOlIU.en-orig.srt', 'r') as f:\n    content = f.read()\n# Extract text lines (skip numbers and timestamps)\nlines = content.split('\\n')\ntext_lines = []\nfor line in lines:\n    line = line.strip()\n    if not line:\n        continue\n    if re.match(r'^\\d+$', line):\n        continue\n    if '-->' in line:\n        continue\n    text_lines.append(line)\nwith open('/tmp/youtube_vxVv6F3TOlIU_transcript.txt', 'w') as f:\n    f.write('\\n'.join(text_lines))\nprint(f\"Clean transcript: {len(text_lines)} lines\")\nPY\nwc -c /tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "timeout": 30000
    }
    In 11,723Out 1,522Cache 23,296TTFT 794mstool_calls
  9. OutputOutput from command in shell dee72f:
    Output from command in shell dee72f:
    Clean transcript: 2212 lines
       78412 /tmp/youtube_vxVv6F3TOlIU_transcript.txt
    
    
    Exit code: 0
  10. Devin
    Thinking

    The clean transcript is 2212 lines and 78 KB. I need to read this whole thing to understand the transcript. Let me also get the video title and description. Then I'll read the transcript in chunks.

    exec(command: yt-dlp --no-update --skip-download --pri…, timeout: 60000)
    {
      "command": "yt-dlp --no-update --skip-download --print \"title: %(title)s\\nchannel: %(uploader)s\\nduration: %(duration)s\\nupload_date: %(upload_date)s\\ndescription: %(description)s\" \"https://www.youtube.com/watch?v=VXv6F3TOlIU&pp=ugUHEgVlbi1VUw%3D%3D\"",
      "timeout": 60000
    }
    In 1,657Out 151Cache 34,944TTFT 698mstool_calls
  11. OutputOutput from command in shell 65fa00:
    Output from command in shell 65fa00:
    WARNING: [youtube] [jsc] Remote components challenge solver script (deno) and NPM package (deno) were skipped. These may be required to solve JS challenges. You can enable these downloads with  --remote-components ejs:github  (recommended) or  --remote-components ejs:npm , respectively. For more information and alternatives, refer to  https://github.com/yt-dlp/yt-dlp/wiki/EJS
    WARNING: [youtube] VXv6F3TOlIU: n challenge solving failed: Some formats may be missing. Ensure you have a supported JavaScript runtime and challenge solver script distribution installed. Review any warnings presented before this message. For more details, refer to  https://github.com/yt-dlp/yt-dlp/wiki/EJS
    title: RARE GAMING MOUSE DISCUSSION STREAM!\nchannel: boardzy\nduration: 5361\nupload_date: 20260705\ndescription: First stream in over a month, discussing the gaming mouse/peripheral scene and answering questions. BOARDZYFEST NEXT SATURDAY JULY 11th OWLS HEAD PARK BROOKLYN https://x.com/boardzyxd/status/2065071312037454019?s=20
    
    
    Exit code: 0
  12. Devin
    Thinking

    Good. Now I know the video is "RARE GAMING MOUSE DISCUSSION STREAM!" by boardzy, uploaded 2026-07-05, duration 5361 seconds (~89 minutes). It's a livestream discussion about gaming mice/peripherals and answering questions. Boardzyfest is next Saturday July 11th at Owls Head Park Brooklyn. Now I need to read the full transcript. Let me read it in chunks. The file is 78 KB / 2212 lines. I can read it with the read tool. Since the read tool has a 20000 character limit, I'll need about 4 reads. Let me do them in sequence. Actually, I can read the whole file at once with `read` if I set a high limit? The limit is number of lines. The default reads up to 20000 chars. Let me just read with limit=2212 or something. But the tool truncates at 20000 chars. So I'll read in chunks. Actually, I realize that I can read the entire file at once if the tool supports it, but it says "By default, it reads up to 20000 characters starting from the beginning of the file." So if I don't specify limit, it reads first 20000 chars. The file is 78412 bytes, so about 4 chunks of 20000 chars each. Let me read the first chunk (already have some), then continue. Actually I already read the SRT file (first 20000 chars). Let me now read the clean transcript from the beginning in chunks. I'll read 4 chunks of ~20000 chars each or by line count. Let me use line offsets. The file has 2212 lines. I'll read 600 lines at a time. That should be under 20000 chars. Let me do 4 reads: 1-600, 601-1200, 1201-1800, 1801-2212.

    read(file_path: /tmp/youtube_vxVv6F3TOlIU_transcript.txt, offset: 1, limit: 600)
    {
      "file_path": "/tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "offset": 1,
      "limit": 600
    }
    In 564Out 449Cache 36,480TTFT 596mstool_calls
  13. Output<file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="1" end_line="542" total_lines
    <file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="1" end_line="542" total_lines="2212">
      1|Okay. Hello.
      2|Have pressed start streaming. This is
      3|first stream in a while. Not a setup
      4|Sunday, but Boursseyfest is next
      5|weekend. So, I figured
      6|>> I should go live at least one time. I
      7|also
      8|>> only have one monitor for the time
      9|being, so that should make the stream
     10|have some more technical difficulties.
     11|First chat message from No03.
     12|Hello, man. How is it going this Sunday?
     13|Sunday afternoon post July 4th. Um what
     14|is up the great Iiku all day? Lots of a
     15|names. Um but yeah, let me ping my
     16|Discord as well.
     17|Um do you recommend We already have an
     18|Artisan mouse pad question. What do you
     19|think about GPX2 versus Viper V4 Pro?
     20|Presuming you mean Super Strike. I still
     21|prefer the Super Strike, but I
     22|understand like there's a lot of um
     23|recent Viper V4 shilling it. It's a It's
     24|a great mouse. Like I really don't have
     25|a problem with it. But yeah, the market
     26|does feel stale.
     27|Do you have the six? Oh, the SLX. No,
     28|but I was going to mention that because
     29|that should be coming any week now,
     30|right? Um like end of the month was the
     31|estimation. So that's
     32|that's something to look forward to. Any
     33|review of the Skyrox V6s? Um I heard
     34|about those. Somebody was asking me
     35|about it. If they send it, I'm down. But
     36|yeah, I really don't know. Super strike
     37|skates on Zero Soft. I mean, they're
     38|like the stock skates. I would recommend
     39|swapping them out. Um, not Super Strike
     40|skates, but I do have these skates from
     41|uh Unusual Way Esports, like the capsule
     42|skates. I don't think this is optimal
     43|dot placement, but I've had those for
     44|months just like uh sitting around.
     45|Best mouse is Zoey Wireless. That's
     46|certainly an opinion.
     47|Oh, [ __ ] I'm using those, too. Yeah, I
     48|know. They um they sent me something.
     49|Yo. Um, TWW YC OV2 sending 10 boards
     50|gift memberships. I've never seen
     51|anybody do that before. Wow, man. You
     52|are in a league of your own. That is
     53|that is greatly appreciated. That is the
     54|Zi shilling. You know, that's that's
     55|what it's all about. We have the ZA12. I
     56|kind of wanted to try the um FK1 as
     57|well, but they just didn't send it out.
     58|Yeah. Thank you for the 10 uh gifted
     59|memberships. You guys use enjoy those
     60|memberships. I wish there was more to do
     61|with them. This is my first time I've
     62|ever read chat off of my main monitor.
     63|It just feels so weird. Um, CR Draco KO1
     64|thoughts. Um, it's a good mouse. I was
     65|thinking about making a video titled
     66|like the most underrated mouse or
     67|because I don't see it talked about a
     68|lot and it's really it's solid all
     69|around, but it's not um I don't know. I
     70|wouldn't say it wows me, but yeah, it's
     71|just it's good. I don't know the price.
     72|I just know Lethal Gaming sent it out to
     73|me. before pro or super strike mice tier
     74|list when I was thinking about actually
     75|like in the upcoming days before board
     76|ZFest doing a mouse company tier list
     77|like that was kind of going around on
     78|Twitter. Um so I was thinking about that
     79|cuz that's I'm not going to say it's
     80|overwhelming to do a 300 mouse tier
     81|list, but I just know my head wouldn't
     82|be in the game for all of it and so many
     83|of the mice it's just like I would have
     84|very little to say about. But the
     85|company tier list, I mean that's that's
     86|very achievable in a short time frame.
     87|It's only like 30 companies or whatever.
     88|Um, I'm at 8.99 VT Energy at the moment.
     89|Well, you just got to keep keep up your
     90|Voltaic grinding, but yeah, I haven't
     91|been playing too much Kovac like
     92|benchmark maxing. Um, yeah, I don't
     93|really know why. What do you guys think
     94|about the G-Tro 5 Superite? Uh, I was
     95|surprised how many views my video got,
     96|but I guess I was the first person to
     97|talk about it and historically people
     98|have just really um loved this shape.
     99|Yeah, I did not expect it to be like the
    100|biggest release since the [ __ ] Viper
    101|V3 garbage. I don't like it. Yeah, it's
    102|kind of what I would expect. Um, it's I
    103|don't hate it though for whatever
    104|reason. I do want to remove the battery
    105|and RGB though. I might as well. You
    106|don't have the new FK1 now for whatever
    107|reason.
    108|I didn't even get the uh ZA12 like
    109|early. I reached out to Zoey for it and
    110|they did send it out to their credit. I
    111|I've noticed Pulsar isn't sending me
    112|their uh like Pro Series stuff either. I
    113|think it's just because these companies
    114|have noticed that I just say it's not
    115|the Super Strike, so I don't recommend
    116|it. And that may that may really be bad
    117|for sales, but it's just it's kind of
    118|how I feel unless you're like in the
    119|hyper budget market. Like the crazy
    120|lights for 65, those were an incredible
    121|deal.
    122|Um $450 monitor recommendations. I have
    123|no idea. There are probably some decent
    124|deals on uh Prime Day. You dig the Fant
    125|Arya? I mean, that was like a mouse from
    126|probably close to five years ago. Four
    127|or five years ago at this point. I don't
    128|really like it. I never like that style
    129|of um like closer to a Rochi shape that
    130|much. XA25. Yeah, I saw that 25 grams or
    131|whatever. That seems cool. I need to
    132|test more stuff like that for sure. Um
    133|Starllight X when that's a great
    134|question. I mean, Final Mouse has been
    135|radio silent. I just I for whatever
    136|reason I imagine there's going to just
    137|be I imagine I won't get one till
    138|August, but maybe I'm wrong. I do have
    139|my order. Um Pulsar Pro Series was such
    140|a disappointment. I I think everybody
    141|kind of rates the Zywoo somewhat highly
    142|depending on how you feel about Ergos,
    143|but yeah, all of the others I mean I
    144|obviously I like Pulsar. I have my
    145|collab with them. They're having a
    146|pop-up at Borsy Fest, but yeah, none of
    147|them have really stuck with me. I hope
    148|Pulsar just does a um some type of
    149|exotic click solution sooner than later.
    150|Yes. I mean, how many months are we now?
    151|Five months into the Super Strike era.
    152|No uh no real competitors yet.
    153|Hopefully the SLX comes out soon. Yeah,
    154|I just do see the disparity that the SLX
    155|is going to have. I see that impacting
    156|things, but maybe I'm wrong. What do you
    157|think about the ATK Artisan copy mouse
    158|pads? I tried their key3 clone a while
    159|back and it's like, you know, it's a
    160|surface. It's a it's like a qu decent
    161|quality pad. It's going to track your
    162|mouse, but it's just it was way thicker.
    163|Um, it's just like a lower quality
    164|experience, but yeah, it will get the
    165|job done. And they're cheap. Like I know
    166|sometimes you can bundle it with a mouse
    167|on their website for practically
    168|nothing. Like ATK definitely has some of
    169|the best budget deals. I have this new
    170|mouse from Moses and again it's just
    171|kind of ruined by weak clicks and it's
    172|heavier than the Viper V3. But depending
    173|on the price, if it's like under 80,
    174|maybe this is good. Um, did you dance in
    175|the street when the Knicks won? No, I
    176|guess I haven't streamed since then. Um,
    177|I did I briefly stopped by the parade.
    178|Um, but I wasn't really there for the
    179|heyday of it. And yeah, it was cool
    180|though. Yeah, now it's the World Cup.
    181|Now I got to root for America.
    182|I was like, "Wow, I finally saw a team
    183|win."
    184|But the Jets winning that would really
    185|that would be truly shocking. What's
    186|your opinion on Incot mice? They can be
    187|good deals for the price. Like good
    188|clone mice, but I'm not again not too
    189|huge on them. ATK X1 V2 has a sensor in
    190|the middle. Um like a sensor position
    191|difference that will have a slight
    192|that'll have an impact on the way it
    193|feels, but yeah, you got some tan. True.
    194|I have been uh have been beachmaxing,
    195|but not to the fullest extent, of
    196|course. Have you had any issues with
    197|build quality on the Super Strike, for
    198|example, clicking on its own? No, I'm
    199|starting to think um I'm having a scroll
    200|wheel issue. Like sometimes when I play
    201|Fortnite, I just notice like it's more
    202|of like a sound thing than a functional
    203|thing. But yeah, that's really it. Um
    204|and I am using one or two. I honestly
    205|don't even know um which setting I'm
    206|using at this point, but I'm still using
    207|one of the lowest settings and still
    208|fine. I'm very surprised how well the
    209|clicks have held up on this copy. What's
    210|that purple mouse in the back? It's
    211|called the CR Draco. What is it like the
    212|KO1? Um, it's kind of like a OP1 35
    213|grams or not 35, it's like 37 or
    214|whatever. Um, but yeah, it's a it's a
    215|good mouse. I should definitely cover it
    216|at some point.
    217|Logitech and scroll issues. True. Except
    218|I've just I've always managed to evade
    219|them.
    220|Will you review the Fortnite Oh yeah,
    221|the Flick Stratus? I DM'd NPen about
    222|that and he said I should be getting one
    223|from the like retail units whenever
    224|those are ready in a few weeks.
    225|That mouse rocks the CR Draco. Yeah,
    226|it's it's really like there's not many
    227|flaws and I don't think many people have
    228|covered it. Or maybe they did and I just
    229|missed out. It was like so long ago.
    230|I've seen a couple of people have issues
    231|with their haptics dying really on like
    232|Reddit. I haven't seen anything on
    233|Twitter. Um but yeah, that would be uh
    234|that would be a concern.
    235|Yeah, I haven't seen too many
    236|complaints. Any
    237|news regarding Final Mouse? No, I was
    238|mentioning that earlier where it's
    239|supposed to come out in a few weeks, but
    240|really, who knows? Any updated opinion
    241|about Super Strike versus Viper V4 Pro?
    242|Not Not really too much. I've definitely
    243|been using the Viper V4 a bit more
    244|recently compared to like a few months
    245|ago, let's say, just because I've seen
    246|it back in the hype cycle. And for Prime
    247|Day, I was comparing it against the V3.
    248|It's like it's a good mouse for sure.
    249|The web software is convenient.
    250|Battery's good. Um, weight's good. So,
    251|yeah. I just don't know how worth it it
    252|is to get over something like the V3.
    253|When the V3 was 100 for Prime Day, that
    254|was like a great deal. Not going to lie,
    255|I got the ATK0 for 51. It feels as good
    256|as my XM2. Um, yeah, 51 for ATK Zero.
    257|Pretty good. This is a historic stream
    258|first stream post Nicks win. Yes, first
    259|stream post Nick's win. Boardsfest next
    260|weekend, day after America turn 250. So
    261|many things going well. How's weather on
    262|your side today? It's not really sunny
    263|out. I noticed like all of next week
    264|it's not going to be too sunny and there
    265|was just a heat wave. So the weather
    266|it's has a mind of its own.
    267|Mets looking good this season. Yeah, the
    268|Mets had to sacrifice for the Knicks to
    269|win. Um but yeah, the Mets are they're
    270|pretty brutal. That's why I'm rocking
    271|the Indians hat.
    272|You should do a video on the history of
    273|brands in gaming mice. Um, yeah. I mean,
    274|something like that's definitely
    275|possible. I definitely do need to have
    276|that spirit to just uh pump out videos
    277|like that.
    278|Yeah. I don't even know. Like, besides
    279|the mouse company tier list and a few um
    280|like smaller mouse reviews, maybe like
    281|some mouse skate content. I'm really not
    282|sure what to post. I still need to make
    283|some video about just keyboards in 2026.
    284|But yeah. Um, hot, muggy, and gray.
    285|Yeah, that's pretty much how it is.
    286|What do you think about the VXE R1S? Is
    287|that like the budget like $20 version?
    288|It's just it's a bit cheaper, but if
    289|you're on like a extreme budget endame
    290|Gear Digital mouse review. Yeah, I saw
    291|that. When did they need to stop making
    292|jokes though? We like we can't really
    293|accept that from them. They need to make
    294|a new mouse. Um, so can't believe that
    295|got gifted 10 memberships and then
    296|dipped. That was based cosmic bite Vox.
    297|What even is that? Is that a mouse pad?
    298|Devil Wolves Warg. Yeah. Um, hopefully
    299|they send me that. I don't know what the
    300|deal is with that, but I should Oh,
    301|yeah. This is a good time to announce my
    302|trip to China in October. Um, I should
    303|be visiting Gwolves gym when I go to
    304|China, but not like the G-Wolves
    305|factory. They like don't have a
    306|headquarters, but I'm finally no longer
    307|putting off the China trip. So, more
    308|details will come on that postboards
    309|fest.
    310|Um, Pulsar Roundup, they dropped like
    311|six recently. Yeah, I'll ask them to
    312|just send me all of them. Like a
    313|roundup's a good idea for that.
    314|Oh [ __ ] can we kiss in China? Um,
    315|unlikely, but I always do wonder how
    316|many people are watching me in China.
    317|I'm like, should I start posting on like
    318|Dian and Billy Billy? Should I start
    319|brushing up on Chinese? Um, War was a
    320|final mouse like drop. Yeah, I saw like
    321|200 units or whatever. Anyone know when
    322|the Z12 DW is coming out? I think next
    323|month, but I'm not positive. I honestly
    324|when I was recording my video I thought
    325|it was like out cuz I saw people like
    326|reviewed the mouse before me but yeah I
    327|don't know
    328|CCP boards build. Yeah CPC that's how
    329|like if you're a real cinnaphile you're
    330|calling it the CPC. See I'm like I'm
    331|doing this at a somewhat high level. Um
    332|do you eat salted roaches? I have not.
    333|But I do live in like Brooklyn
    334|Chinatown. So it's it's like a low tech
    335|version of China. So, I'm excited to see
    336|what the high-tech version is like. Um,
    337|when is BozyFest? It is next Saturday,
    338|July 11th. So, yeah.
    339|Owls Park, Brooklyn. There are literally
    340|I have so many mouse pads this year, but
    341|I'm not going to lie, like it's a lower
    342|proportion of mice to mouse pads than I
    343|think it's ever been, but in part
    344|because there's just like literally 400
    345|plus mouse pads. Like I hope a lot of
    346|people show up. Um or else people are
    347|just going to walk out with like 10
    348|mouse pads each. You know, people will
    349|show up. Um yeah, there's the whole
    350|pulsar element as well. How's the $6
    351|haircut? I haven't gotten them. The
    352|other day I saw a $7 haircut and I
    353|didn't take a picture and I was just
    354|like I was smacking myself the entire
    355|way home. I was like, why wouldn't I
    356|just stop to take a picture of that? It
    357|would have been the perfect quote tweet.
    358|Um, yeah, I haven't gone to those places
    359|cuz they're meant for like salary men
    360|who are just like getting a little
    361|touchup or something. Do artisan mouse
    362|pads slow down over time? Definitely.
    363|Like they're cloth, so to some extent,
    364|yes. But if you keep a decent enough
    365|care of them, they'll last a while, but
    366|honestly, um, like the heat and it
    367|definitely does wear down over time. A9
    368|mini plus drop of the year. I wouldn't
    369|say drop of the like Super Strike was
    370|this year and I'd say that's like a way
    371|more impactful drop, but that's like
    372|probably the budget drop of the year so
    373|far. Um, are we gonna allowed to drop
    374|kick anyone jumping the queue? I mean,
    375|there was good mob justice on the
    376|thieves a few years ago. So, uh, there's
    377|also going to be a lot of staff, so I
    378|think the line will be managed well. I
    379|have no idea like if Pulsar is bringing
    380|how many people they're bringing. Um,
    381|it's kind of the borfest is always like
    382|chaotic. Nobody really knows what's
    383|going to happen.
    384|Uh, do you recommend the 10 to X
    385|edgeless control pad? I haven't tried
    386|it, but edgeless control pad, it sounds
    387|like probably de probably decent enough,
    388|good quality.
    389|You know, USA translates from Mandarin
    390|to beautiful country. I think I saw that
    391|on Twitter yesterday, but I was like, is
    392|that true? Is it not true? And then I
    393|just like moved on with the ambiguity in
    394|mind, but now I'll think it's true.
    395|The hair looks good. Are you talking
    396|about my hair? Yeah, the hair is um
    397|unfortunately cru, but it just is what
    398|it is. How's the Kiomi Rio? Um, I
    399|honestly have not. It definitely like it
    400|is textured and fast. It's not like the
    401|Atlas. It's not like any of these other
    402|smooth pads. I also got X-ray pads new
    403|glass pad. Um, so I've been testing that
    404|as well. Glass pads. It's just sometimes
    405|I can do it and then sometimes I'm in
    406|like a cloth pad arc. Currently in the
    407|cloth pad arc. What is Huddled up to?
    408|He's like developing games and like um
    409|he's doing a lot of vibe coding. price.
    410|He's not uh I don't know. He made this
    411|like Instagib game. You should go to his
    412|profile and play it. They haven't been
    413|talking to him as much. How's the goat
    414|on mouse reviews on China? Uh I don't
    415|even What is that? What are you trying
    416|to say by that?
    417|Where's BozyFest details? Oh yeah, it's
    418|in the uh like link or it's in the
    419|description of the stream. I should just
    420|link to the tweet and like pin the
    421|message. But yeah, if you're in New
    422|York, it's Owls Head Park, Brooklyn next
    423|weekend. What more do you need to know?
    424|Like 12:00 p.m. Maybe 11:00 a.m. It's
    425|supposed to be kind of rainy next
    426|weekend.
    427|Going into sanitation. That's an honest
    428|It's an honest job, Bryce. I respect
    429|that. Turning 19. Wait, you're turning
    430|N? That's crazy.
    431|Time really flies.
    432|Bozy Fest Manila when I'm consider like
    433|when I go to China
    434|at that point I might as well do other
    435|Asia stuff or ideally like Pulsar or
    436|Razer like they bring me there and then
    437|I just go to China. Um but yeah, I don't
    438|know. I I have to like get a Chinese
    439|visa still. How's Fortnite ping in NYC?
    440|It's like 20. It's It used to be better,
    441|I swear. But like they changed the
    442|servers for at least like reloading
    443|creative. When I play central it's like
    444|straight 40. Sometimes I'll get on like
    445|a 30 ping server. Um, hi Borsy. Is the
    446|gaming mouse review scene oversaturated?
    447|Would it be okay to start from scratch?
    448|If you find mice interesting, um, I
    449|would always recommend to just like post
    450|about it, but if you're looking to like
    451|make a living off of it, it's it's
    452|definitely not the scene to get into. I
    453|would say
    454|looking for a mouse that's a bit smaller
    455|than the Viper V3 Pro. There's the one.
    456|God, I I reviewed it. It's like It's
    457|from ATK.
    458|Somebody in chat will know it. It's
    459|actually really bad that I don't
    460|remember that mouse's name. It's like
    461|Ghost Extreme. That's what it is. The
    462|ATK Ghost Extreme. I still have your
    463|pinñata. Yeah, I'm not sure if there's
    464|going to be a piñata this year. Um on my
    465|end, no. But I told Pulsar like it would
    466|be a great idea to have a Pulsar piñata
    467|and they were like we agree that's a
    468|great idea but I don't know if that
    469|means there's going to be the piñata or
    470|not. Thoughts on America performance in
    471|the World Cup? Um I mean I'm rooting for
    472|them but I'm not not keeping too close
    473|of a watch on like the Mexico England
    474|game tonight. That's going to be
    475|interesting. One of my friends lost
    476|$1,000 betting on Argentina to win in
    477|regular time. Just like an idiotic bet.
    478|Um so I don't know. I stay away from the
    479|betting. That's haram.
    480|Can we close line Q jumpers at boards
    481|fest? You're asking that again because
    482|you didn't get the clear response. Um
    483|yeah, you know that's the legal
    484|liabilities on you though. You can't be
    485|like, "Oh, this guy told me to." It's
    486|you're a man making your own decisions.
    487|Um but yeah, we we are expecting
    488|pro-social
    489|positive behavior at Boardfest. I
    490|honestly don't know where the stamper
    491|is. I need a new stamp. Um yeah, same in
    492|upstate NY for paying. They used to have
    493|a subserver in NYC. Yeah. Yeah, that's a
    494|real it's a real shame that they did
    495|that.
    496|Thoughts on IM cologne major? I should
    497|have that's the one Nico won, right? I
    498|should have made a video on the
    499|peripherals on that and there was a
    500|Valerant tournament the same weekend. It
    501|was really just a throw on my part. We
    502|getting an SLX Nightfall review this
    503|month. The review will be whenever I get
    504|it. A lot of people are asking for
    505|clarification on the Muslim thing. Um, I
    506|like Muslims,
    507|like all religions. Thoughts on James
    508|Dolan being an idiot and letting go? I
    509|mean, apparently like the second I'm a
    510|big Mitchell Robinson guy. I always have
    511|been, but um, apparently like the
    512|numbers or whatever just didn't make
    513|sense. Yeah, seeing him on the Celtics,
    514|that's brutal. And like replaced with
    515|Drummond, it's like I don't know. Mecca
    516|stream when again I'm willing to go to
    517|the Middle East. I'm willing to go
    518|anywhere in the Middle East. I saw like
    519|Jackson Hinkle was in Iran. I was like,
    520|"Wow, that's just imagine being having
    521|an American passport with an Iran stamp.
    522|Like, that's pretty tough." Um, but
    523|yeah, if anybody wants to bring me to
    524|Saudi Arabia and to any of these
    525|countries, I'm going to go buying 10
    526|zebra artisans now. Let's go. I mean,
    527|there's going to be close to 200 at
    528|Boursy Fest. It's kind of crazy.
    529|Anywhere. Yes, bro. Anywhere.
    530|Uh, but after China though. And I also
    531|have to go to Turkey for a hair
    532|transplant.
    533|boardsfest Germany when that's like one
    534|of the few places I won't do a uh a
    535|boardfest because I actually looked into
    536|it there a few years ago and it was just
    537|such like a high they needed so much for
    538|like a public event I was like this
    539|can't be possible but then it maybe
    540|there's like different parts of Germany
    541|where it's a bit more lax but I don't
    542|even know come Switzerland I was just in
    </file-view>
  14. Devin
    Thinking

    I read lines 1-542. I need to continue reading the rest. Let me read the next chunk.

    read(file_path: /tmp/youtube_vxVv6F3TOlIU_transcript.txt, offset: 543, limit: 600)
    {
      "file_path": "/tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "offset": 543,
      "limit": 600
    }
    In 7,020Out 68Cache 36,992TTFT 964mstool_calls
  15. Output<file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="543" end_line="1108" total_li
    <file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="543" end_line="1108" total_lines="2212">
     543|Switzerland in uh February for the
     544|Logitech event but yeah I mean
     545|Switzerland's really nice just the air
     546|there was so nice in Losan I need to go
     547|back to Europe. It would probably be
     548|Greece though. We got do a little Turkey
     549|Greece, little Constantinople in Athens.
     550|Uh, Mountain Meat R six with the $20.
     551|Thank you, man. Um, hey man, appreciate
     552|your content. Hope you're doing well.
     553|Just started making peripheral videos.
     554|Had a blast doing it. I'm largely
     555|inspired for you or by you. Appreciate
     556|the 20. I'll check out your videos, man.
     557|That is uh always happy to hear that.
     558|Peripheral reviewing.
     559|I got into it many years ago for a good
     560|reason. Hope you keep it up. Yeah. 20
     561|big ones. Shocking.
     562|Not too familiar with the laws outside
     563|of Bavaria. Bavaria could be tough. Yes.
     564|Mountain Me R six. You still playing R
     565|six? I guess some people still play
     566|that. Sure. Come Norway.
     567|How about Poland?
     568|I mean, all of these are possibilities.
     569|That's the issue, though. It's like you
     570|got to spend a few days everywhere and
     571|then it's like you're just out of
     572|commission for god knows how long.
     573|Bozy Fest Japan artisan straight from
     574|the source. I I should do some type of
     575|meet up in China. That would just be
     576|fun. And I know artist there's another
     577|GB Bos in September. Who knows? No FK1DW
     578|yet. I only asked them to send out the
     579|ZA12, but I'm sure like they'd they'd be
     580|willing to send out the FK1 unless you
     581|mean just like for availability. And
     582|yeah, they're not up for sale yet. Bors,
     583|you need to do an updated mouse pad tier
     584|list. I mean, my somehow my opinion
     585|hasn't changed. Like, I'm still like I
     586|have the Zebra Zero here. I don't But
     587|yeah, I understand like there are a lot
     588|of new pads, but I couldn't do like a
     589|300 pad tier list. It would just have to
     590|be like relevant ones.
     591|North Europe is boring as hell. Yeah, I
     592|haven't been, but I'm sure there's
     593|something everywhere.
     594|I don't think there's like a truly
     595|boring country.
     596|ZA13 was low-key perfect. Yeah, ZA. They
     597|have the DW version, but it's just so
     598|much heavier. Um, the Lamu Inca is like
     599|a good kind of similar shape, lower
     600|weight. Argentina when speaking of
     601|Argentina, what happened to Thiago Tech?
     602|I heard there was like this drama with
     603|him and he like deleted his channel. Why
     604|do some Fortnite pros not use artisans?
     605|Uh, some of them just like the large
     606|cloth pads. Like there's really no issue
     607|with it and uh yeah, it just is way. But
     608|a lot of them do use artisans. So,
     609|there's that as well.
     610|Yeah, Argentina. I do hear the steak is
     611|very good there. That's a good draw to
     612|the country.
     613|Are you thinking about doing more
     614|keyboard reviews? Not really. I mean,
     615|I've just literally I've had my 68 V2
     616|since I mean December, November of last
     617|year, and I just Yeah, there's nothing
     618|that has
     619|got my attention. Thiago tech situation
     620|is basically that he's a scammer. Yeah,
     621|that's what like he had a brand and they
     622|just like didn't fulfill orders. Is that
     623|what it was?
     624|Have you used your Harpace 2 since you
     625|reviewed it? No. I I don't even know if
     626|I have that anymore after I sold it.
     627|Harpace 2 extreme edition. Is that
     628|different from the 20 year anniversary
     629|one that I think I saw like Bad Seed
     630|post? Um, do you still prefer the Super
     631|Strike? Yeah, like when I play I'm just
     632|pretty much only using the super strike
     633|unless I'm explicitly testing other
     634|stuff. Um, Thiago's chill, but also he
     635|is very rude. I met him once in person,
     636|I think, in like was it 2022, late 2022,
     637|and it was like we went to a restaurant.
     638|It was nice. Um, yeah, I don't I never
     639|knew him too well. And people like
     640|Argentinian people would always message
     641|me like about their problems with him.
     642|I'm like, man, I I really don't know
     643|this guy. But yeah, it's shocking.
     644|online tech store product never arrive
     645|to the buyers. Yeah, that's pretty much
     646|what I thought. That's unfortunate.
     647|How does the OP1 V2 feel like? I mean, I
     648|watch my review of it or just watch my
     649|review of the V1. It's pretty I mean,
     650|Obi-Wan's still great. I just hope
     651|Endgame gear they got to do something
     652|else.
     653|Find keyboards really fun right now with
     654|the Slice75 H. Um, yeah. I think I tried
     655|the Slice75 like last year. That's been
     656|around out for around a year, right?
     657|Chill key and the RS7. Is that the ATK
     658|one? Yeah. Like I think the keyboard
     659|market, it's pretty much solved, which
     660|is why I don't want to review them so
     661|much. Um, it's like at any form factor,
     662|you can kind of find something. What
     663|kind of ruined keyboards for me is I got
     664|the second like the split space bar and
     665|I didn't find a bind for it. And I was
     666|like, "Wow, man, that's just brutal."
     667|Did any of your super strikes develop
     668|creaking? Nah, nothing major. Like
     669|sometimes even when I squeeze it down
     670|here, it's fine.
     671|U who using the Zyu? Yes. Who is even
     672|using an erggo mouse in in the chat?
     673|Probably not many people. The Lambsu
     674|Thorn reviews were so interesting. I
     675|wonder if anybody's still using that
     676|mouse.
     677|Endgame gear erggo would be nice. Yeah,
     678|it's kind of like they should do
     679|something or like asymmetrical at least.
     680|basically scammed thousands to everyone,
     681|not customers, but even brands. And when
     682|he got exposed to ensued, he disappeared
     683|and deleted all his media. Damn.
     684|You know, he's just operating in the
     685|shadows. Magnetic switch reviews. Yeah.
     686|Again, switches are like I don't I
     687|remember using the Hex80 and I just
     688|never found out what switches were in
     689|the keyboard. Is Super Strike an upgrade
     690|from the Viper V3 Pro? I mean, I mained
     691|the Viper V3 for a while, like when it
     692|came out and even after that, and
     693|switched to the Super Strike, but it
     694|will come down to shape, like what game
     695|you play. Um, I won't really say like
     696|the weight is going to be a make or
     697|break. Golution Terra is the best Erggo.
     698|Yeah, if you're a G73 fan, that mouse is
     699|probably a lifesaver, but
     700|yeah, if you're not, it's probably not
     701|too relevant.
     702|I saw they were making a G30 clone or
     703|something.
     704|Super Strike is worth every dollar. A
     705|few like I've showed the Super Strike to
     706|some of my friends I play games with and
     707|they are they are in agreement. So
     708|that's like my real judgment of a
     709|product.
     710|I have Zi EC1 like a a wired version
     711|EC1C. Did they ever make an EC1DW? I
     712|don't think so.
     713|Did you like Razer frame sync? I enjoy
     714|the total sensor feeling on the Viper
     715|V4. So the answer is like yes, but
     716|there's no way to toggle it off. So, I
     717|can't really like say how I would feel
     718|if I had the sensor running without it.
     719|But, yeah, it's good.
     720|Do you think Viper V4 is not worth an
     721|upgrade from the V3? It just depends on
     722|how much like the price matters to you.
     723|Like, is it worth one60?
     724|Probably not in the grand scheme of
     725|things, but if you're like a mouse
     726|enthusiast, you just want to try it, um,
     727|there's really Yeah, it's worth buying.
     728|Only flaw with Super Strike is the stock
     729|skates. Yeah, and I mean the side button
     730|quality. They definitely have gotten
     731|mushy, but it's still my preferred mouse
     732|for um Fortnite. Yeah, the stock skates
     733|it's like you just swap them off. Um,
     734|hey, happy fourth. Looking forward to
     735|the ATK Hex80 review coming soon. Yes, I
     736|do have to get on ATK's good side before
     737|my China trip. They probably have a HQ I
     738|can visit. I know Wow has the store in
     739|Wuhan. That would be crazy. Um,
     740|what browser are we using? I still use
     741|Chrome. It's probably the wrong answer,
     742|but I don't know.
     743|What time do you want us at Boursey
     744|Fest? I mean, I always say noon, but
     745|people um always show up earlier, but
     746|just don't show up too early. And, you
     747|know, rain or shine. So,
     748|yeah. Yeah. Everybody coming to Boours
     749|Fest, it should be a very shocking year
     750|because I don't even know what the
     751|Pulsar booth is going to entail. the
     752|first time a company is ever set up.
     753|Do you still use your hex80? Not so
     754|much. Um, I just kind of prefer the 60%
     755|form factor and just something about
     756|like the feeling like my game just feels
     757|smoother, less choppy when I use the
     758|wooting. I don't know what it comes down
     759|to. Maybe like polling rate or scan rate
     760|consistency, but um yeah, it's like it's
     761|a very minor thing. Like the hex80 felt
     762|great.
     763|Hello, Lavender. Yes, COVID 19 mouse.
     764|Uh, Viper V3 motion sync is off on 4K
     765|and higher. Um, interesting.
     766|I wish I could come to Borsy Fest. Yeah,
     767|it is unfortunate that it's always in um
     768|New York City, but eventually it'll be
     769|somewhere else at a smaller scale.
     770|Maybe grow a beard all the way until you
     771|change main mouse. That would be a good
     772|experiment, but I'm keeping up the clean
     773|shaven arc. I honestly I can't believe I
     774|did the mustache for so long.
     775|Pulsar did great booths. They have mini
     776|games and trivia. Yeah, I mean, Bozy
     777|Fest, they seem like they're going to be
     778|go go go into like the carnival game
     779|aspect of it. Um, so yeah, opinion on
     780|the G-Wolves war. It seems great, but
     781|it's I wish Gwolves would send me their
     782|mice so I could review them like early
     783|or not early, but just like I wouldn't
     784|be waiting so long. Bory, thanks for
     785|your reviews. I've learned a lot from
     786|you. Keep doing what you do, man.
     787|Appreciate the uh support and will do.
     788|Mustache was hella good. I'm sad you
     789|shaved it off. You know, all arcs have
     790|to come to an end.
     791|I just coped a Super Strike Tuna Ninja
     792|Zero Artisan mouse pad. Hype to use it
     793|in two weeks. That's a It's a pretty
     794|great setup to uh just move to.
     795|I don't think you'll have any problems
     796|with it.
     797|Yeah, Wix, that was uh that was
     798|something.
     799|Where's the Kiomi Ryu and Viper V4 Pro
     800|review? Um what what are you talking
     801|about? the Kiomi Ryu all included in
     802|some type of glass pad roundup. There's
     803|just so many
     804|so many glass pads I haven't covered and
     805|not a lot of things to like
     806|differentiate.
     807|Have you lost weight? Yeah, definitely
     808|in the past few months.
     809|Would you recommend the HDX Ultra 8K or
     810|Lykan? Definitely the Lyken.
     811|Zoey new gray color is so clean. Yeah,
     812|it's pretty nice. I don't know. It's
     813|It's definitely better than the black
     814|which just got like kind of disgusting
     815|looking no matter what. Um even though I
     816|guess that wasn't the case for
     817|everybody. Um while I saw the title
     818|wrong, I thought it was rage gaming
     819|mouse discussion stream. Yeah, I um I
     820|meant to put shocking at the end of the
     821|title, but I was scared like nobody was
     822|going to click on, but it seems like
     823|people clicked on nonetheless. Um
     824|Borgie, what do you think is better? ATK
     825|Ghost Extreme or Ultimate? Is there even
     826|a weight difference or is it just the
     827|sensor spec difference difference? If
     828|it's just like the Nordic 54H chip,
     829|that's not worth paying up for. I would
     830|just go for the Ultimate. Um,
     831|you seen the ROM Leviathan V4? I've
     832|heard of it. I'm like sure it's a great
     833|budget mouse, but yeah, I just I'm not
     834|catching every budget release. Wall hack
     835|haven't sent you an SPO5. No, I'm just
     836|totally off of their lists.
     837|um the uh
     838|like whether it's collabs or just new
     839|pads, but I feel like I can just ask
     840|most of these companies for products and
     841|they would send them.
     842|Yeah, 54H it doesn't I don't think I've
     843|ever tried it and been like this is a
     844|much better experience than the 54L.
     845|Yeah, the SPO5.
     846|probably should check it out because I
     847|have all the other glass pads.
     848|SLX only competitor to the Super Strike.
     849|Um, yeah, currently it's the only mouse
     850|that at least promises some like type of
     851|similar
     852|tech implementation, but it's not going
     853|to I don't know. I don't think it'll
     854|like outdo the Super Strikes feeling,
     855|but it will be so much lighter and new
     856|shape from Final Mouse, so it should be
     857|exciting regardless.
     858|What's your current pick for aggro claw
     859|grip and Fortnite? I mean, my main pick
     860|for just like the type of claw I use is
     861|the super strike kind of almost said
     862|Viper V4 and slip, but yeah, I'm really
     863|I've been very basic recently with my
     864|mice.
     865|Wish there was a new extra MC1. Yeah,
     866|that's if there's really no reason that
     867|that shape hasn't been cloned yet. You
     868|think like one of the companies like
     869|Kaona or something would have done it by
     870|now because there is like there's a
     871|market for it
     872|even if it's a small market. What's your
     873|opinion on the ATK Air9?
     874|Um did I see like an aim adapt thumbnail
     875|about that?
     876|I I'm not really sure.
     877|Is that just like a new version of their
     878|Super Strike clone?
     879|went from Death Adder to Super Strike to
     880|EC2DW.
     881|Um, though I love the shape. It does
     882|feel a bit heavy.
     883|Um, have you tried like the Death Adder
     884|V4? I don't even know if that's a big
     885|weight difference. Probably would be too
     886|big. What is like the best lightweight
     887|EC clone? Like Pulsar Crazy Light maybe.
     888|Crazy Light medium.
     889|Thoughts on WS Ying Magnesium for claw
     890|grip? If you want like a thinner mouse
     891|for claw could be viable.
     892|It's just like OP1 style and lighter. I
     893|didn't really um I don't know. It's just
     894|never a mess I've loved too much.
     895|PMM mod kit's worth it on OP1.
     896|Thought about buying the cyber. I don't
     897|like the fingertip grip mice personally.
     898|Some people do though. I would advise
     899|against that, but I don't know. I heard
     900|PMM's like been very popular recently.
     901|MM720 shape is goated. Yeah, that as
     902|well. MMF720 and uh ExtraYMZ1. Should I
     903|just like Should I just do collabs with
     904|companies, get these shapes out there?
     905|Might as well. I just need to get RJ's
     906|Blessing. I probably wouldn't get it.
     907|Would you recommend the Terror Mouse
     908|from Golution if you want the G73 clone?
     909|Yeah, but if not, I don't know. I just
     910|don't have many great erggo
     911|recommendations because it's so like
     912|hand size dependent and I truly just
     913|don't use any of them. So, it's just
     914|like they're all the same. Are you
     915|currently using a glass pad? No, I'm
     916|using a uh the Zebra Zero currently. I
     917|was using glass pads within like the
     918|past week.
     919|What are your thoughts on Playboy Cardi?
     920|Has he got the seal of approval? No, but
     921|I haven't heard much about him in like
     922|the past year or two. Has he even been
     923|like making music?
     924|I just remember like
     925|I was very annoyed by him like years
     926|ago.
     927|Is the Super Strike amazing? You know,
     928|it's not necessarily worth the money,
     929|but is it the best? Can you call it the
     930|I consider it the best. I But see,
     931|you're saying, can I go with Pulsar and
     932|Jetso Sky? Like, if you want a lighter,
     933|smaller, like cheaper mouse, yeah, there
     934|are so many other options on the mouse
     935|market. But if you like the GPX shape
     936|and want this like new click tech, yeah,
     937|it's probably worth going for if you can
     938|afford it.
     939|Any more mice coming out this year?
     940|There have to be plenty. Usually like
     941|December, November, we get some good
     942|releases, but yeah, nothing confirmed.
     943|Hopefully Logitech does a Super Strike
     944|decks and a 2C decks or Super Strike
     945|rather.
     946|Zoe S2 is criminally underrated but too
     947|heavy right now. Yeah, I kind of fear I
     948|don't know if I'd main it even if they
     949|had like a lighter weight version.
     950|What time does Fest start on Saturday?
     951|Like 12 let's say like 11:30 a.m.
     952|really noon though. I just know people
     953|are going to show up early.
     954|What do you think about DPI downshifting
     955|in Chinese? I really I think it's it's
     956|not like overblown. Like sure, it's a
     957|sensor issue that should be fixed, but
     958|it's just so irrelevant to people.
     959|And yeah, I don't know.
     960|It's like I've never had a I've never
     961|experienced an issue because of it. I
     962|see some people being like this this
     963|mouse is worthless if it has DPI
     964|downshifting. And I just don't see that
     965|being the case.
     966|Think
     967|I'd wait for a 2C in some more
     968|colorways. Yeah. Um, they seem like they
     969|would do new colorways. I guess they're
     970|just like keeping the mouse with this
     971|exotic look for the time being. What's
     972|your opinion on the Draco KO1? It's
     973|pretty good if you want like uh like I
     974|think this is a much better overall
     975|mouse or just like mouse to buy than the
     976|W mouse Ying Magnesium. But yeah, I
     977|don't know like how hard I'd shill it.
     978|I still do think I'm going to make a
     979|video about it though. Like most
     980|underrated mouse.
     981|Your best pick for diamond/taper shape.
     982|Are you talking like G303 style?
     983|It's really the only shape I've ever
     984|heard referred to as a diamond.
     985|Have you ever played Conclave? No. I've
     986|not been a new game maxing really. Do
     987|you prefer the Super Strike to the
     988|Lykan? Like if I'm playing Fortnite,
     989|yeah. But if I'm sometimes like in
     990|Kovac, I prefer the Lykan. Just other
     991|games where you want like a lighter,
     992|smaller, more nimble mouse, probably a
     993|Lykan. But yeah, it just depends. Yeah,
     994|like the G303 there are really aren't
     995|many clones. I think Tolution has one
     996|coming out, but
     997|yeah, even like in 3D printed ships.
     998|Just bought a CR5. I wasn't a big fan of
     999|it, but
    1000|I don't like much glass, especially not
    1001|control glass. When do you think do you
    1002|think Hit's technology is going to be
    1003|cloned anytime soon? Um, like
    1004|specifically how Logitech does it with
    1005|the haptic engine? Probably not because
    1006|of how it would impact weight
    1007|distribution on like most shapes,
    1008|especially lighter mice. But there are
    1009|other ways to do it like the way Final
    1010|Mouse did it with the um TMR sensing.
    1011|And yeah, I just don't know. At some
    1012|point though, yes. Like people aren't
    1013|just going to be using optical switches
    1014|forever.
    1015|At least that's my estimate. Uh does the
    1016|Lykan pick up internal dust easily? Not
    1017|to my knowledge. I mean, it's just been
    1018|sitting on my desk. There's like the top
    1019|shell. It's not going to really get
    1020|dust. You can see it's somewhat dusty.
    1021|Do you prefer super shark to like it? I
    1022|swear I just got asked that like 20
    1023|seconds ago.
    1024|60g is not a bad weight for my head.
    1025|Certainly not like this unusably heavy
    1026|weight, but yeah, it just depends. Super
    1027|Strike versus Lyan. I mean, it's like
    1028|the Lykan's half the weight. So, if
    1029|that's what you prioritize,
    1030|probably go for that. Oh, I'm playing
    1031|Fortnite definitely with Super Strike.
    1032|Uh, currently have a Huan Beast Mini
    1033|Hyperlite A9 Mini Plus. What would be a
    1034|good mouse from Gwolves to try? Probably
    1035|the Lykan. I mean, if you can or even
    1036|the HTX Mini, possibly if you can use
    1037|the Beastex Mini, but I'd say the
    1038|Lykan's just like a better purchase.
    1039|Full size skates on Lykan work well on
    1040|cloth.
    1041|Um, the I never tried the full size. I
    1042|only use the Dots. I believe
    1043|you heard about the RCC1. Oh, yeah. I
    1044|did review that mouse. Um, it just
    1045|didn't impress me. But I guess if you
    1046|really like that style of shape, um, it
    1047|could be worth it, but it's probably not
    1048|for the premium price. Yeah, I just
    1049|don't know if Logitech's ever going to
    1050|refresh the G3. It took them took them
    1051|long enough to refresh the G35. That was
    1052|only so so
    1053|back in tomorrow.
    1054|Oh yes, the US
    1055|the US soccer. Shocking
    1056|stream lagged. I didn't get the
    1057|response. Did the stream actually lag?
    1058|It says I've dropped zero frames. That's
    1059|kind of remarkable. Viper V4 Pro
    1060|shocking. It's a pretty good mouse. I
    1061|would say it's the most shocking
    1062|release, though.
    1063|Viper V5 Pro. Wonder what that's going
    1064|to look like.
    1065|Are you a Guardians fan? No. I'm
    1066|unfortunately a Mets fan, which is
    1067|what's caused me to pick up the
    1068|Guardians hat. Boards, you respond to my
    1069|comments. Yes. What's your other
    1070|comment? Is the ATK1X1 V2 Ultra Max good
    1071|for $40? See, there are just too many
    1072|like short abbreviations there. Made the
    1073|comment hard to read, but yeah. I mean,
    1074|$40, it's a great deal for like a budget
    1075|Viper V3.
    1076|I think your Juan review was a little
    1077|too harsh for not being innovative
    1078|enough. Um, I don't know. It's like $140
    1079|for like a magnesium vip for me, I
    1080|guess. Yeah, it was a fine release. It
    1081|had the really good clicks, but
    1082|I don't know.
    1083|feel like when it's like the hit scan
    1084|hyperlit released in 2024 and it was
    1085|pretty much just like you're telling me
    1086|the Jan's that much better all these
    1087|years later
    1088|have the same monitor as you. Do you
    1089|ever have the left half of your screen
    1090|bug? No, but I kind of have some of my
    1091|taskbar icons causing burnin finally.
    1092|I have three defective Viper V4 Pros.
    1093|I'm waiting for a fourth as a
    1094|replacement. What is your uh what's your
    1095|copies defect for me? I mean definitely
    1096|a bit more side to side wobble on my
    1097|Viper V3, but that's really it. I didn't
    1098|like people were shilling the build
    1099|quality so much. I never had issues with
    1100|the V3 buildwise. However, the clicks on
    1101|the KO1, it has an SPDT mode. Um they're
    1102|honestly pretty nice. They are a bit
    1103|like uh like you see there's some
    1104|pre-travel, a little bit of movement.
    1105|They feel like snappy and kind of
    1106|responsive though.
    1107|Lucky I got a Juan on marketplace for 65
    1108|USD. I mean, yeah, used mice. That's
    </file-view>
  16. Devin
    Thinking

    Continue reading.

    read(file_path: /tmp/youtube_vxVv6F3TOlIU_transcript.txt, offset: 1109, limit: 600)
    {
      "file_path": "/tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "offset": 1109,
      "limit": 600
    }
    In 7,179Out 49Cache 43,904TTFT 1,043mstool_calls
  17. Output<file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="1109" end_line="1678" total_l
    <file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="1109" end_line="1678" total_lines="2212">
    1109|really one of the hidden secrets in this
    1110|industry.
    1111|Skate should I put on the Super Strike?
    1112|Just got the Gigantis V2 Speed. What do
    1113|I have? Like Magic Ice X-ray Pad Jade
    1114|Ultras. I just have some fullsize skates
    1115|on my Super Strike. You can use dots.
    1116|Just takes a good amount of dots
    1117|usually.
    1118|I recommend full size, especially if
    1119|you're on cloth with the super shrink.
    1120|How deep is your desk if you know? Um,
    1121|is it 40? No,
    1122|might be 36 in. Sounds about right.
    1123|Can you please describe the Draco shape?
    1124|Somebody was asking for a comparison.
    1125|Yeah, I'll just I'll make that review in
    1126|a few days. Need to get some more
    1127|testing on the mouse. It's definitely
    1128|like most similar to OP1 like when when
    1129|I get it in hand, but definitely not
    1130|identical. Using the Kumo Sububasa. I
    1131|see. I have no idea what those are. I'm
    1132|just behind in the skate game.
    1133|Looks like 28 in. If that's an XXL pad.
    1134|Yeah, it's four. This is like 500 mm
    1135|deep. Could very well be 28.
    1136|ATK A9 Mini Plus that good? Just order
    1137|it for 35. I mean for 35. Yeah. For I
    1138|mean even if it was like 70 it would be
    1139|a pretty good deal. 35 though that's
    1140|great.
    1141|It's just essentially a mini mini GPX.
    1142|If you wanted it from Logitech, it would
    1143|be over a hundred more.
    1144|First one had a creaking body at the
    1145|front. Second had a wobbly scroll wheel
    1146|and a chip in the finish. Third had a
    1147|loose creaky scroll wheel. Yeah, that
    1148|seems like I don't know, just bad luck.
    1149|My copyy's still fine. I was thinking
    1150|about like making a few months later
    1151|update on this just because content.
    1152|It's few and far between. Then again,
    1153|I'm getting so many uh so many questions
    1154|in chat. There's billions of reviews to
    1155|make. Have you tried the Pulsar
    1156|Superglide V3? No. Was that the one that
    1157|was on sale for Prime Day or is that
    1158|like the new one? $75 for that pad
    1159|though was pretty good. 490x 420 glass.
    1160|How to fix delay on mouse? Really
    1161|depends on your mouse and the amount of
    1162|delay. I don't know.
    1163|Need a deck super strike. Love the
    1164|shape. Yeah, I've been asking for that
    1165|for a while. Um, I honestly want to see
    1166|that way more than the 2C Super Strike
    1167|because I think having an Erggo as well,
    1168|that would just be that would be
    1169|powerful.
    1170|You faced any spinout issues. Um, no,
    1171|no, I didn't. I saw people reporting
    1172|those, but I remember I did most of my
    1173|testing on the PD-170,
    1174|um, which is like one of those types of
    1175|cloth pads. But yeah, I didn't do much
    1176|testing on glass.
    1177|Even though it would make sense with
    1178|this being a slightly heavier weight
    1179|mouse, it would probably make it nicer.
    1180|Are there any erggo mice you like right
    1181|now? I mean, I like the Death Adder V4,
    1182|but it's not something I really keep in
    1183|rotation, honestly. Like, no. There's
    1184|not any ergos I'm using.
    1185|Which crazy light feels the most like
    1186|the OP1 shape? Really, none of them. If
    1187|you claw the OP1 though, you might like
    1188|the X2H Mini.
    1189|Zoen Z2 Mini Max is a good erggo. I
    1190|remember that shape was so flat. Um, one
    1191|of the Zhen Z2s, but it's probably good
    1192|for the price. I don't love Zopin,
    1193|though. Or I just don't even know what
    1194|they're doing like most recently.
    1195|Seen some Valerant pros switch back to
    1196|Superite 2 after trying Super Strike.
    1197|You think it's Wait. Um, possibly wait.
    1198|I don't know which pros did that though.
    1199|I did see the numbers for recent
    1200|Valerant tournaments. It's pretty split
    1201|between Viper V4 and Super Strike at the
    1202|top.
    1203|Do you plan on reviewing Flick Stratus?
    1204|Yes, I do.
    1205|Would you suggest XM2 4K V2 for claw?
    1206|Yes, claw over fingertips. I mean, some
    1207|people fingertip it, but it's a very
    1208|wide shape. Like, you need like a huge
    1209|hand. It's like not something you'd
    1210|actually recommend as a fingertip mouse.
    1211|Uh, hit scan over ATK. I mean, hit scan
    1212|has one mouse. ATK has like a lineup of
    1213|10 shapes or whatever. So, really just
    1214|depends. Generally, I'd recommend ATK.
    1215|Like, it's going to be cheaper, more
    1216|options, and so forth. Um, when are you
    1217|doing a ROM Leviathan V4 review?
    1218|I don't know. I've been getting asked to
    1219|do that like all year. Monosy switched
    1220|back to the Super Light 2. That's
    1221|shocking. Yeah, I mean, I saw his
    1222|setting settings or whatever. Um,
    1223|he was like using five for the actuation
    1224|point and the tactility. I was like,
    1225|that's a weird super strength.
    1226|240 Hz OLED or 480 Hz IPS. Um, I guess
    1227|it depends on the game you play. I saw
    1228|there's that new Zoey monitor. I was
    1229|considering uh not buying it but asking
    1230|for it.
    1231|I really don't know though. If you play
    1232|something that like maxes out 240,
    1233|probably the OLED. How's the coding on
    1234|the ZA12? It's good. I mean, it's just
    1235|like the rubberized grippy like matte
    1236|zowi coating, but there's not going to
    1237|be any issues or not the same level of
    1238|issues with staining as there is on the
    1239|black.
    1240|What would you recommend for superstrike
    1241|settings wise? The lowest that you're
    1242|comfortable with like and you aren't
    1243|getting any accidental presses
    1244|like for me like 22 one that works.
    1245|We're using for actuation on super
    1246|strike still as your review. Yeah, I'm
    1247|using either one or two. I genuinely
    1248|don't know. I just don't check.
    1249|Only reason I got an Z monitor was for
    1250|CS.
    1251|Yeah, I don't know what's the best for
    1252|Fortnite. I presume it's OLED. Like,
    1253|I've had this monitor since late 2024
    1254|and it still feels good.
    1255|Unusual way sports a black fox skates.
    1256|I prefer the magic ice over the silver
    1257|fox and black fox, but I mean if you
    1258|want control, you play on glass. Could
    1259|be good. Do you think you overshield
    1260|hits? No, I still think it's the future.
    1261|I just don't think it's needed um like
    1262|on every like the jewels liken for
    1263|example, it's still great for clicking,
    1264|but I don't know for Fortnite for high
    1265|ping, it just feels so much so much
    1266|better and it's just it makes so much
    1267|sense to me.
    1268|I guess in a way it doesn't make sense
    1269|to everybody else. Like you've always
    1270|wanted lighter clicks, lower actuation
    1271|point, lower force, and it's just
    1272|seemingly the easiest way to do it.
    1273|And just like even the MOS, like the
    1274|clicks on this are just so so weak. Like
    1275|there's so much pre-travel. It's just
    1276|worse than like the Razer Viper V3
    1277|optical. It's like imagine this just had
    1278|a hit solution. Um it would be much
    1279|better.
    1280|Uh, for how long you play Kovac? I don't
    1281|know what that means. Like nowadays, not
    1282|much. But I started playing it in like
    1283|2019 or whatever. Pretty much when I
    1284|first got a PC.
    1285|I just bought a Razer Strider because of
    1286|you. Wow, that that video was a long
    1287|time ago. Um, loving it since the minute
    1288|I started using it for CS2 and War Zone.
    1289|Um, X-ray pad dots. Yeah, that's a good
    1290|like a rougher speedy mouse pad setup.
    1291|Could be mouse pad.
    1292|Yeah, War Zone. I don't hear too much
    1293|about War Zone anymore.
    1294|Hit his raw tech. I just I don't really
    1295|have any complaints about it. The
    1296|tactility, like the setting on one, it
    1297|just feels perfect.
    1298|I guess I'm just I've always been a Gro
    1299|shape fan.
    1300|Yo, what's good? First time hopping on
    1301|stream? Yeah, not much. It's the first
    1302|time I've uh streamed in a while. Maybe
    1303|a shorter stream. Shockingly short.
    1304|Really? Just answering questions.
    1305|Nothing Nothing too riveting at the
    1306|moment.
    1307|Do you still like the death shape? I
    1308|like it for an erggo, but I'd be lying
    1309|if I said I'm using it like daily or
    1310|even weekly.
    1311|Yeah. See, it's like death adder with
    1312|hits. That would be innovative. That'd
    1313|be exciting.
    1314|Recommendation for big hands claw grip.
    1315|I have the Viper V3 and the hump is so
    1316|low can't grip it correctly. I mean the
    1317|ZA12 when it comes out it seems like it
    1318|could be an option for you. It's much
    1319|higher profile and my camera
    1320|finally decided to freeze. Got to give
    1321|it a second.
    1322|Any news on the Skyax V6s? V8s? No, I
    1323|haven't seen anything about it. I
    1324|haven't been offered those. Camera dead.
    1325|Yeah, unfortunate.
    1326|This is M chose. The blue mouse was M
    1327|chose.
    1328|Razor Strider plus dot skates. Jesus, I
    1329|can't find the USB port on my PC. How's
    1330|that even possible?
    1331|Wow, you can hold your hand so still.
    1332|Yes, like a surgeon. Thoughts on sensor
    1333|position? How far forward or back do you
    1334|prefer? I generally prefer like slightly
    1335|above centered sensor position. Can you
    1336|show me how you apply dots on the GPX? I
    1337|don't have dots on my current GPX,
    1338|but
    1339|I don't know. How many total do you
    1340|want?
    1341|Generally like eight.
    1342|Yeah. Let's see. God, my camera it's
    1343|like 200 degrees. Yeah, I guess it is
    1344|kind of hotter. That does make sense.
    1345|Okay, here we go.
    1346|your favorite color for gaming mice. Um,
    1347|I don't know if I really have a
    1348|favorite.
    1349|A zebra. Obviously, a zebra print by far
    1350|the most optimal because you get white
    1351|and black. With the Super Strike, you
    1352|also get white and black. So, I guess
    1353|that's up there. Always green. Vacaxy
    1354|green. Yeah, the NP1s B3 green was
    1355|pretty nice. Pulsar has infinite colors.
    1356|Play double edit binds. Wow.
    1357|Um,
    1358|that's like it's like 5 years ago. Tech
    1359|raider 464. Um, Artorius, thank you for
    1360|joining the epic tier here. Scared to
    1361|try superstrike because of the side
    1362|buttons. I don't even know what that
    1363|means. Think about how all the Fortnite
    1364|pros use the GPX.
    1365|Also, they don't use double edit bind.
    1366|So, I don't know.
    1367|Think of doing a full rear skate and two
    1368|dots in the front. I don't. Some of you
    1369|guys get real experimental with the
    1370|mouse skates, you know. Do as you do as
    1371|you please. Just got my Borsy Crazy
    1372|Light from Prime. Yes. $65 for that.
    1373|Good God. They were they were giving
    1374|those away. I saw those sold out pretty
    1375|quick though. I was happy about that.
    1376|Yeah, there was never a BZY medium crazy
    1377|light. There should have been though.
    1378|That would have been a great idea.
    1379|Have you tried glass mouse pads?
    1380|Yeah, I've I mean I've been using glass
    1381|mouse pads since the Skypad 2.0. I've
    1382|just never been sold on them. Or I would
    1383|even say I've never been sold. I've just
    1384|never completely bought into them. Like
    1385|I've had times where I've used Glass,
    1386|but any news on the Repu and it's not
    1387|going to come out soon as far as I know.
    1388|Have you tried gaming wise? No.
    1389|Unfortunately not.
    1390|Yeah, the repu. Anything new from
    1391|Artisan? Something I look forward to. I
    1392|still can't believe they sent out 200
    1393|Zebra Zeros for Bozy Fest that have a
    1394|slight print error. You guys can
    1395|actually see it. You see that little
    1396|square in the bottom right? That's not
    1397|supposed to be there. And Artisan
    1398|printed like 200 pads with that and
    1399|they're like, "Well, we're not going to
    1400|sell them, so you can give them away."
    1401|It's amazing.
    1402|It's got a glass pad. Feels great with
    1403|crazy light with jade skates. That seems
    1404|like a solid setup. He and wear down the
    1405|most out of all artisans. Heen is far
    1406|slower than my type 999. That's weird.
    1407|But if you are in a really humid
    1408|environment and you've uh
    1409|like the he can develop a slow spot, but
    1410|six months to be slower than a type 999.
    1411|It seems extreme.
    1412|Rare square pattern edition. Exactly.
    1413|You can see it as a see it as a benefit.
    1414|Have you tried the glass works polarity?
    1415|Yeah. The polarity I never reviewed and
    1416|now I see it's like not coming back in
    1417|the current version. So that's kind of
    1418|the issue with most glass pads is they
    1419|get sold and then they're never sold
    1420|again. Um but people still expect
    1421|everything to be like compared to it
    1422|over years. Um yeah, there's always
    1423|something new coming out in glass. I
    1424|guess the SPO5 is one that really makes
    1425|sense to review.
    1426|Have you seen that the Zebra Zero is
    1427|already sold out? Is it sold out? God, I
    1428|shouldn't like there's a
    1429|I shouldn't even explain it. But yeah, I
    1430|did not know that.
    1431|There may be another batch in the
    1432|future,
    1433|but if not, I guess boards fest could be
    1434|the b last place to get them. Are dots
    1435|skates usable on soft artisans? Yeah, on
    1436|soft for sure. Xoft if you're putting
    1437|any amount of pressure really not so
    1438|much. Um the Pulsar X3 and the Terra are
    1439|slightly different in terms of shape. Um
    1440|where the Terra is like more true to the
    1441|G73, but
    1442|um yeah, I'd say either are viable if
    1443|you're looking for a modern option. The
    1444|G73 is a bit heavy though.
    1445|My chopped liver. It's not a zebra
    1446|pattern. It's It's pretty zebra.
    1447|We're moving on rabbitical timing.
    1448|Lots of Norwegian fans at the last Mets
    1449|game. Um I the last last night they had
    1450|such like a pathetic play. I remembered
    1451|it. Um
    1452|like the dropped popup and then there
    1453|was something else as well. I mean the
    1454|Mets are just they're really not good
    1455|this year. Just is what it is.
    1456|Is magic ice good on glass? I always
    1457|found it good, but just it's going to
    1458|wear out quicker. I mean, like the dots
    1459|are fine, but fullsize Magic Ice, they
    1460|definitely do wear out at some point.
    1461|Sterns needs to be fired. I thought
    1462|Mendoza needed to be fired, but clearly
    1463|that didn't do anything.
    1464|Thank you, Borsy. You saved me $20.
    1465|Happy. Always happy to do that.
    1466|Hello, Andre.
    1467|Missed the MM711 MM712 shape. Hopefully
    1468|10's mini can fill the void. I mean, if
    1469|you tried like X2H mini, it's obviously
    1470|not a clone. Yeah, I mean, Cooler
    1471|Master, who was it that told me their
    1472|mouse division is just completely done.
    1473|I think it was on mouse cast. Um, but
    1474|yeah, I don't know that that was a good
    1475|shape. Espec I remember being a high
    1476|school senior like after the Ultralite 2
    1477|came out, I saw that announcement. I was
    1478|like, "Wow, there's a real competitor
    1479|now."
    1480|any wrecks for mouse skates. So, my K83
    1481|feels more controllable. I would say
    1482|just like a full-size PTFE skates should
    1483|give you the type of experience you want
    1484|on the K83.
    1485|If not, then maybe yeah, go for
    1486|something slower, smoother, more
    1487|traditional cloth. What games do you
    1488|play? Really mainly just Fortnite. It's
    1489|kind of bad. I played like
    1490|I don't even know.
    1491|mouse market seems to have reached
    1492|critical mass. Yeah, that's why I'm
    1493|pushing for uh different click solutions
    1494|because it's kind of like all there is
    1495|to do,
    1496|at least with shells. So many of these
    1497|shells we've just been using for years
    1498|on end. How often do you change your
    1499|mouse gates? Not enough. Need to be more
    1500|of a mouse gate swapper and enthusiast.
    1501|When is final mouse shipping? That is
    1502|the milliondoll question.
    1503|It's supposed to be in a few weeks
    1504|though because I streamed that drop over
    1505|a month ago and they said what? Seven
    1506|weeks. So, will it ship in the next few
    1507|weeks? It's possible.
    1508|God, my camera died again. This is
    1509|looking brutal.
    1510|Full boxing and one pumping someone in
    1511|Fortnite is just so different from any
    1512|other game. Yeah, that's what I've um
    1513|I've tried to express that before. Yeah,
    1514|the camera it's just it's too hot. It's
    1515|starting to have some issues. But unless
    1516|you've played Fortnite and done it, it's
    1517|hard it's hard to explain.
    1518|And even like I was playing earlier
    1519|reload and just these two people popped
    1520|up out of nowhere. They were just like
    1521|camping just like complete rats. And I
    1522|just got jump scared in a way like I
    1523|just wouldn't get jump scared in another
    1524|game. I was like Fortnite's just too
    1525|peak. The New York Heat. Yes, the Miami
    1526|Heat. LeBron, he could go to the Knicks.
    1527|Probably not gonna.
    1528|Campers are so annoying. I honestly It
    1529|wasn't even annoying. I respected it.
    1530|There was some guy who commented on my
    1531|video though. I actually took a
    1532|screenshot. So, you said, "Bro, boards,
    1533|you killed me on Fort at retail. You
    1534|shot me through the window or something.
    1535|It was the broken house. Just wanted to
    1536|say I hate you." It's like, you see, is
    1537|anybody going to comment on my YouTube
    1538|like that in a Valerant game? Probably
    1539|not.
    1540|Um, it's so hard to get into Fortnite. I
    1541|just don't get the drive to learn
    1542|editing. Yeah, if you haven't gotten
    1543|into Fortnite at this point, um it's
    1544|probably
    1545|probably just too much. A lot of people
    1546|play Zero Build, but it's just I don't
    1547|know. That would be like getting into
    1548|burgers, but only eating like vegetarian
    1549|burgers.
    1550|Zoad, you're you're adequately Fortnite
    1551|pill. Okay, let's see. We might get a
    1552|few more minutes. I can I'm really
    1553|pushing my camera past its uh past what
    1554|it should though. Similar thing happens
    1555|to horses in heat. Have to cancel the
    1556|races. Um Bard said the next step in the
    1557|mouse game is replacing sensors with
    1558|something more advanced. Uh yeah, there
    1559|could be. I mean, there's definitely
    1560|some merit to that. I just can't imagine
    1561|what that would be that wouldn't like be
    1562|somewhat like cheating
    1563|really. It's just like planting a sensor
    1564|in your wrist. Yeah, I know he's very um
    1565|into the idea of sensor rotation, like
    1566|different sensor positions. Currently
    1567|trying the Beast GMAX on Fortnite. Yeah,
    1568|let me know how you feel about that. The
    1569|clicks were kind of the weak point on
    1570|that whole series, at least on the units
    1571|I tried. Truly shocking camera
    1572|performance. It's doing its best. You
    1573|know, honestly, an hour into the stream,
    1574|it's failed twice.
    1575|Not bad. Any recommendations in the
    1576|small mouse bracket? Um,
    1577|like really depends. Like Gwolves liken
    1578|is probably my top one, but if you want
    1579|something higher profile, it's a whole
    1580|bunch of those. There's just too many
    1581|mice in like every category.
    1582|Think Logitech will release a Super
    1583|Strike compact this year or something to
    1584|expect in 2027.
    1585|I've I hope it'll be this year. There's
    1586|a chance it's this year for sure, but I
    1587|wouldn't say it's guaranteed. And again,
    1588|knowing Logitech.
    1589|I don't think it'll be too soon. Nice
    1590|repping the American Chief Wahoo. Yeah,
    1591|I guess this is a little Fourth of July
    1592|thing as well.
    1593|Still no Leviathan V4 review is actually
    1594|diabolical. I mean, I'm sure I'll say
    1595|it's good. I'm not going to be like it's
    1596|crap. It's not going to be like a main.
    1597|Maybe it would be like a top budget
    1598|recommendation, but
    1599|yeah, I don't know. That camera needs to
    1600|retire indeed. It's the Sony ZV E10. Um,
    1601|and honestly, like it's still it's kind
    1602|of still fine.
    1603|Having a blast with my magnesium ying on
    1604|the Type 999. Feels so good in CS2.
    1605|Yeah, it's a great combo.
    1606|Leviathan V4 is discontinued already.
    1607|Wow. See, that's honestly like this is
    1608|my classic thing to do. Just ignore
    1609|people telling me to review a product
    1610|until it's no longer for sale. Done like
    1611|five times off the top of my head. Have
    1612|you tried the Whales RZ uncoded? I tried
    1613|like he sent me all of those pads with
    1614|the gold logo and
    1615|I think the RZ was one of them, but
    1616|yeah, I know he has like new pads now
    1617|like the the Kaiser or whatever. You
    1618|think Razer will come out with something
    1619|like the Super Strike soon with the V4
    1620|Pro release? They seemed like kind of
    1621|against it. They were going to like they
    1622|were anti the idea of the tech, but you
    1623|have to think at some point, but maybe
    1624|not.
    1625|What's your setup when you're tryh
    1626|harding into Fortnite? Really just Super
    1627|Strike. I won't even say I mean recently
    1628|I've been using the Zebra Zero even
    1629|though it's been like very humid and hot
    1630|in New York. Probably should be using
    1631|something else, but yeah, just the
    1632|Wooting 6HEV2.
    1633|Hop on crunker. Whenever I hop on
    1634|Kunker, like it's happened like twice
    1635|this year. People always just comment
    1636|about my inventory. Apparently, I'm
    1637|crunker rich. Has anybody transplanted
    1638|the Super Strike internals yet? No. I
    1639|mean, I don't think you really like it's
    1640|not like modding friendly.
    1641|I know you can put like an old you can
    1642|swap the shell for like a GPX2 shell.
    1643|Like if I wanted to make a blue or a
    1644|pink Super Light or Super Strike, I
    1645|could do that.
    1646|I know you're a mouse person. I just
    1647|bought $150 IM to have a headset to see
    1648|if it's good for Fortnite. Some people
    1649|love IM. People say it has the
    1650|advantages. Um, but I swear half of the
    1651|times people are like, "Oh, it's just
    1652|nicer for my hair than a headset."
    1653|Yeah, Crunker is a fun game. I just
    1654|don't know what happened with it.
    1655|Do you What mouse pit would you
    1656|recommend? If my favorite is the brand
    1657|new Orange Zerosoft, sad after the
    1658|breakin period, it's a bit too slow for
    1659|my liking. Maybe the Hyperion, but I
    1660|don't know. I would maybe just quicker
    1661|skates. Sounds like you just need a
    1662|constant stream of zero softs.
    1663|Did you get Final Mouse's new mouse? No.
    1664|I mean, I ordered it um when it dropped,
    1665|but it has not arrived yet. Hopefully, I
    1666|can be one of the first people to review
    1667|it. But
    1668|yeah, thoughts on Zoe Mice specifically
    1669|looking at the S2DW? I uploaded a video
    1670|like a week ago on the S or the Z12 and
    1671|just like my thoughts on Zoey mice, but
    1672|I think the S2DW it's just a bit heavy.
    1673|If you really don't mind the weight, it
    1674|could be good, but still at the price,
    1675|it's a bit expensive. I think they're
    1676|going to do like a refreshed version.
    1677|One more delay. I mean, they haven't
    1678|officially missed the timeline yet. Is
    </file-view>
  18. Devin
    Thinking

    Continue reading the last chunk.

    read(file_path: /tmp/youtube_vxVv6F3TOlIU_transcript.txt, offset: 1679, limit: 600)
    {
      "file_path": "/tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "offset": 1679,
      "limit": 600
    }
    In 7,054Out 52Cache 51,072TTFT 758mstool_calls
  19. Output<file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="1679" end_line="2212" total_l
    <file-view path="/tmp/youtube_vxVv6F3TOlIU_transcript.txt" start_line="1679" end_line="2212" total_lines="2212">
    1679|it worth getting the Super Strike if I
    1680|have the Gro Superlite 2? Uh, it totally
    1681|it could be depending on what you play
    1682|and like how much you benefit from the
    1683|click tech. For me, it's like I haven't
    1684|touched my Superite 2 since the Super
    1685|Strike came out. think Zawi will ever go
    1686|to a web browser? Probably not. As long
    1687|as they're committed to like the
    1688|plug-andplay approach.
    1689|Yeah, I mean it would make like Vaxi
    1690|like do they have the web driver as an
    1691|option? Just makes sense.
    1692|Is the Vstax Mini too expensive for what
    1693|it is? I mean, it's like a Final Mouse
    1694|ulter.
    1695|You could get the Beast G Mini. It just
    1696|depends on like what type of build you
    1697|you want. Are Artisan mouse heads the
    1698|best cloth right now or outdated? I
    1699|mean, there's plenty of cloth options.
    1700|I'd still use Artisan like over
    1701|everything else pretty much. PD170.
    1702|There are some exceptions though.
    1703|Exclamation mark Discord. Yeah, I
    1704|usually put the link to my Discord in
    1705|the description of the stream. Let me
    1706|just generate a invite to it real quick.
    1707|Keyron, mag opt mouse switch. I heard
    1708|those are just going to be like terrible
    1709|implementation wise and just like I
    1710|don't know. I'm willing to try it, but
    1711|there's pretty much there's a reason
    1712|Keyron is the only company doing it.
    1713|It's not because they have an exclusive
    1714|deal with a manufacturer.
    1715|Do you recommend PD-170 for slower
    1716|scents?
    1717|It could be very good for that. It's
    1718|It's just like a speedy pad. I saw Bard,
    1719|he mentioned that there's a very minimal
    1720|difference on like your arms friction
    1721|and the skates friction on the pad,
    1722|which is like something I realized but
    1723|like hadn't put into words. So yeah,
    1724|it's like if you really enjoy the firm
    1725|like silky speedy feeling, yeah, it's a
    1726|good pad. But is it even available?
    1727|Are the side indents on the Draco
    1728|notice? What do you mean?
    1729|Like the curvature?
    1730|Like you can definitely notice it feels
    1731|straight at the front and then like
    1732|flares out towards the back. NP1SV3
    1733|coming in the mail tomorrow. I'm
    1734|excited. It's a high quality mouse.
    1735|There's really no element that's like
    1736|it's a low quality release. I just wish
    1737|I liked it more for Fortnite. Really
    1738|don't know why I don't.
    1739|You seen the new Jewels War? Yes. I wish
    1740|I had it though. Do you know which mice
    1741|were used at Masters London? No, I
    1742|didn't actually take a look at the
    1743|winning team's mice.
    1744|Have you tried any West Lab skates? No,
    1745|but I do have some uh some of the new
    1746|skates from Unusual Way Esports. So, I
    1747|don't know. The capsule skates are
    1748|[ __ ] capsule maxing. Is ATK better
    1749|than Logitech? It's a better budget
    1750|company, but it's like if I were to use
    1751|one mouse for the rest of my life, it
    1752|would be the Super Strike rather than
    1753|anything from AFK or ATK. AFK, it's a
    1754|good name. Change your fire alarm
    1755|batteries. That's not
    1756|That's not me. I don't know. Whatever
    1757|noise you heard.
    1758|How's the PD-170 durability? It gets
    1759|dirty and like dusty quick, but it
    1760|doesn't seem to really affect the glide.
    1761|But I need to clean it before I review
    1762|it because people are like bullying me
    1763|for how uh dirty it was. That was like a
    1764|month ago.
    1765|Do you have a favorite Jules mouse?
    1766|Definitely the Lykan followed by the
    1767|hottest Ultra, which I want to see them
    1768|do like a modern, not like modern, but a
    1769|newer version of.
    1770|Yeah, I think Jles is pretty good.
    1771|The Viper gets hits. How hard would it
    1772|m? I mean, if it was like 50 g, if it
    1773|was just the same mouse, like with hits
    1774|instead of optical, it would definitely
    1775|m the super strike. But yeah, really,
    1776|who knows?
    1777|Maybe they'll do like a Viper Mini
    1778|Signature Edition with hits. That's kind
    1779|of what I thought. Like some type of
    1780|experimental high-end release rather
    1781|than like a official like pro line
    1782|release for the first time. Picked up an
    1783|OP1 EKV1 for six units. It's a sharp
    1784|deal. Have you tried the new Silver Fox
    1785|Plus dots? I literally I might have them
    1786|just sitting behind me. So, I'll look
    1787|through the uh my skate bin after the
    1788|stream. It's possible, but I haven't
    1789|tried them, but I might have them.
    1790|Um, say Draco K1 is Fortnite worthy. I
    1791|have not tested the like I I don't think
    1792|so, but it's just cuz my hands are kind
    1793|of small. If you prefer like OP1 size
    1794|range mice, yeah, it could be valid for
    1795|Fortnite. Yeah, I haven't used the um
    1796|sidebones too much, honestly. Sidebones
    1797|are really small. Setup Sunday. No, not
    1798|setup Sunday. That might be a thing. Uh
    1799|I'll actually ask Pulsar about that in
    1800|person. We'll press the issue. But
    1801|what's up with setup Sunday? No, they
    1802|actually there were some plans. I don't
    1803|know.
    1804|Should be getting our new final mouse
    1805|this month. In theory, that is correct.
    1806|I need to buy a new mouse. Please choose
    1807|for me. Death V4 Pro or EC2DW? Um Death
    1808|V4. if you want lighter, larger like
    1809|razor tech experience. Um, EC2W if
    1810|you're Zoey build simple as
    1811|missing it. Yeah. Um, I'm very sorry for
    1812|the lack of setup Sunday. Yeah, I got I
    1813|got the rug pulled on setup Sunday.
    1814|Why don't they just put their own
    1815|implementation of hits that would take
    1816|over the market? Well, if it was was
    1817|that easy that they could just snap
    1818|their fingers and take over the market,
    1819|I'm sure they would have.
    1820|Death Arrow V4, Viper V4, Viper, it's
    1821|not even close. I mean, it's just I
    1822|don't The death it's just bulky. It's
    1823|like a very large feeling in my hand,
    1824|which is not what I'm really looking
    1825|for.
    1826|Upgrading from F-1 Extreme to Super
    1827|Strike, would the shape bother me?
    1828|Possibly. If you don't want something
    1829|like larger, wider, just like more
    1830|potatoey, it depends on your grip. Maybe
    1831|you'll prefer it.
    1832|I'm XM2 filled after trying a bunch of
    1833|mice. XM2 was one of the first mice that
    1834|really made Claw Grip click for me.
    1835|What happened to being glass filled with
    1836|the Atlas Pro? It started
    1837|I the dust just started to become an
    1838|issue
    1839|or no it was like the temperature
    1840|increase combined with dust or
    1841|something. Cuz
    1842|now that summer like using glass is
    1843|really tough.
    1844|Remember how you shill Death Adder V3?
    1845|Yeah. Yeah. Cuz I really I don't know
    1846|why I was like palm gripping like claw
    1847|palming using it in Fortnite. That that
    1848|had a big um advantage over most of the
    1849|erggo market at the time. And the death
    1850|hour V3 wired was great as well.
    1851|Surprised you preferred it over a
    1852|polarity? I'm like something was wrong
    1853|with my polarity. How was your
    1854|experience going on mouse cast? I mean,
    1855|it was nice.
    1856|Didn't really think too much of it. It
    1857|was just a nice discussion about mice,
    1858|but yeah, I saw they did one with
    1859|Bardos. Thoughts on new gaming monitors
    1860|that can do 1,000 Hz? I don't know. I
    1861|feel like there's always just some
    1862|caveat with those where it's like they
    1863|can't actually or it's like in lower
    1864|resolution
    1865|and I don't know. I'm waiting. I want a
    1866|new monitor. 480 Hz OLED. It's just kind
    1867|of uh
    1868|I don't know. I wouldn't say I'm bored
    1869|of it, but I just want to see what else
    1870|there is. Well, my use and Kovac really
    1871|just whatever. It's just whatever I'm
    1872|testing. And then I have a few that are
    1873|like a essentially a control.
    1874|Why do you want to upgra 480 fps? Yeah,
    1875|I don't know. I really don't have a
    1876|reason to
    1877|just see what different stuff feels
    1878|like.
    1879|Yeah, it's really like I'm not my
    1880|monitor is not limiting me in any way.
    1881|Any info on the Techusai mouse? Uh, no.
    1882|I mean, I saw just the teaser or
    1883|whatever, but yeah, I don't have any
    1884|insidef info. It's gonna be a collab
    1885|with some company, right? What's your
    1886|best performing mouse in Kovex, though?
    1887|Um, what did I get my recent bean click
    1888|score on? Was it the G-old's liken or
    1889|was it the MP1 SV3?
    1890|I don't know. It It depends on the type
    1891|of scenario as well. It's not the Super
    1892|Strike though. I've just never liked the
    1893|GPX shaping Kovac. Just like hard to
    1894|explain. Use G-Sync now. What is your
    1895|favorite latest erggo? Um Thorn V2. I
    1896|really did not appreciate the Thorn V2
    1897|much at all. I'm trying to think of a
    1898|good Erggo release this year. Have there
    1899|been any?
    1900|Oh yeah, I should be getting a Sora V3
    1901|though, even though nobody cares about
    1902|that anymore. It's got the A9 Air Plus,
    1903|49 GPX. It's quite nice.
    1904|Does actually come in on the scale at
    1905|49.
    1906|Looking forward to the X825. Yeah, if I
    1907|get one, I'll definitely check it out.
    1908|What do you think about Super Strike for
    1909|MOBAs? Um, it should be like if CPS
    1910|matters, should be good,
    1911|but I'm really not I'm not the MOA guy.
    1912|Can't imagine Teusai partnering with
    1913|Pulsar, but who I swear he tagged the
    1914|company or something.
    1915|And it wasn't hit scanned.
    1916|Yeah, I don't know why. I just can't
    1917|remember.
    1918|I'm new to all this. Would you recommend
    1919|the Viper V4 Pro for competitive FPS? I
    1920|mean, I would say like the Viper V3 Pro
    1921|SE if you really just want like a
    1922|starter mouse. It's makes a bit more
    1923|sense. But if you're willing to like
    1924|splurge on the Viper V4, yeah, it's like
    1925|the best version of the Viper. But if
    1926|you have like smaller hands, may not be
    1927|the endgame shape. Didn't know he tagged
    1928|Pulsar. Oh, he did tag Pulsar.
    1929|Um, how good is the PFM flex? It was
    1930|pretty good.
    1931|Can't really
    1932|I I don't have many cables to compare it
    1933|with, though. not using many wired mice.
    1934|If you get SPO5, there's a new limited
    1935|release coming. That is not shocking
    1936|that there's a new Skypad limited
    1937|release.
    1938|G-Sync plus reflex plus VSYNC. Yeah,
    1939|VSYNC I don't know about.
    1940|Which mouse pad brands besides Glass
    1941|have the best durability? Um,
    1942|I don't know if there's really much of a
    1943|difference.
    1944|Like pretty a lot of pads are using the
    1945|same bases.
    1946|Like Artisan cloth is good, but can I
    1947|say it's like so much better in the
    1948|Saturn Pro or just some random budget
    1949|cloth? Probably not. Um, do you think
    1950|anything above 2K pulling is just a
    1951|gimmick? No. especially in games like uh
    1952|Valerant where the mouse input's really
    1953|good like 8K is totally viable,
    1954|but it depends on your setup
    1955|a lot about your PC monitor.
    1956|First batter of the day, Wanoto gun down
    1957|at second. Yeah, I'm not not really
    1958|expecting anything much from the Mets.
    1959|Viper V3 AK was only $20 more at SEO and
    1960|Prime Day. Yeah, I saw it was like $95.
    1961|That was a great deal.
    1962|Yeah, I would like to see the Jets do
    1963|something this year, though. Zoe GSR is
    1964|8K okay for Fortnite on 500 Hz, like on
    1965|a 500 Hz monitor? I I've just never had
    1966|a good experience with above 4K in
    1967|Fortnite, but yeah, I don't know. It's
    1968|possible some people are able to use it.
    1969|I mean, CR Draco, it's I don't even
    1970|know. Like, what are they as a company?
    1971|Are they just like another hit scan
    1972|where they release one mouse and it's
    1973|pretty good and they just never do
    1974|anything else?
    1975|Mh. Good. Yeah, it's pretty good.
    1976|Especially the newer versions when it
    1977|was like sub50 on Prime Day. It's a
    1978|great deal. Yeah, 2K is what I generally
    1979|use on Fortnite.
    1980|I I think the Endgame Gary L1W is just a
    1981|joke.
    1982|Uh, bro, what happened to Omron optical?
    1983|I hate those heavy clicks. Are you
    1984|saying like new batch Omrons are bad? I
    1985|A lot of optical switches are very
    1986|disappointing to me.
    1987|Hate to say Gino Smith is leading the
    1988|Jets to two wins. That'd be two more
    1989|than I expect.
    1990|What was the city like after Nick won
    1991|the final? Even in the final, it was
    1992|crazy. Like people were just chanting on
    1993|the subway. There was definitely like
    1994|like just look how much pre-travel this
    1995|has, man. People are going to defend
    1996|this and be like, "Oh yeah, the clicks
    1997|are fine." Um, what was I saying? Yeah,
    1998|the subways were in like people just
    1999|chant for the Knicks. It was It was
    2000|electric. I will say that much. Like
    2001|people went on the streets.
    2002|Change my mind. Pour on mouse pad bases,
    2003|especially soft and exoft, make you more
    2004|inconsistent rather than helping. See,
    2005|glass pads. I mean, why don't any pros
    2006|use glass mouse pads?
    2007|That is the perfect counter. How is the
    2008|U2 the Zi U2? I It exists. It's a claw
    2009|shape from Zi. I don't I honestly don't
    2010|use it much nowadays. Ellege does.
    2011|Isn't he like um now that Nico won a
    2012|major, he's like the meme now for like
    2013|not winning a major?
    2014|Or am I wrong about that?
    2015|Um, yeah, he is. Okay. I just didn't
    2016|want to get that because I swear I like
    2017|saw it on I can never know if I'm being
    2018|misinformation misinformation baited.
    2019|Um, trying singularity for 21 days and
    2020|the result is not the budget class pad.
    2021|My friend in New York said he's never
    2022|seen the city like that before. Yeah, I
    2023|would agree cuz like there's nothing
    2024|everybody like just the amount of people
    2025|at the parade. I was like, "Wow,
    2026|people really love the Nex."
    2027|I've never been to Ny. How hot is the
    2028|subway? If it's like a 100, if it's like
    2029|90 plus out, the subway is like really
    2030|It's just like nasty and sweltering. But
    2031|it really, it also like depends on the
    2032|subway and the station. Like the inside
    2033|of the subway there generally there's
    2034|AC. Some stations are above ground. Like
    2035|if you're going to like Coney Island or
    2036|something.
    2037|Elij is the best current player who
    2038|hasn't won a major. It's between him and
    2039|Guardian to never won one. Interesting.
    2040|Time for the Boursy Fest parade. Yes,
    2041|Bozy Fest parades.
    2042|It will outdo the Knicks.
    2043|What do you think of the VXR1 Pro in
    2044|2026? Like the ATK0 is kind of a more
    2045|modern version of it, but yeah, it's
    2046|still a good budget mouse.
    2047|How long have I been live? An hour and
    2048|22 minutes. It feels like it's been
    2049|longer.
    2050|There are a lot of CS fans in my chat, I
    2051|realize.
    2052|You super strike over a V4? Um, yeah, I
    2053|am. And I definitely don't misclick at
    2054|this point. like at the start a little
    2055|bit, but yeah, not really because it's
    2056|not like it's so such little force like
    2057|you're doing it accidentally.
    2058|Think 10,000 Hz to 4K makes much
    2059|difference. It totally could. Just
    2060|depends on what you play.
    2061|Yeah. Is it going to be like life and
    2062|death? Probably not.
    2063|Any thoughts on the Jules HS Plus Pro
    2064|Click Tech? No. I um want that mouse to
    2065|release though.
    2066|I'm a fan of the hottys ultra shape, the
    2067|hottys plus. It's like it's not
    2068|terrible, but it's definitely not my
    2069|number one from them.
    2070|Thoughts on the PMM Cyber? I think
    2071|somebody asked me about that before as
    2072|well. I'm not a fan of any like
    2073|fingertip mod kits, but that's just cuz
    2074|that's just like my grip style and
    2075|preferences.
    2076|Seems like it's popular though.
    2077|Yeah. Has anybody like reviewed that?
    2078|Does anybody really use that? Have you
    2079|tried Mrova mouse pads? No.
    2080|I didn't realize your hair was so long
    2081|till I saw the mouse casting. Yeah, the
    2082|hair is in a pretty insane hair arc.
    2083|I um I'm normalized my facial hair. I
    2084|think I have to do the same to my to my
    2085|real hair as well.
    2086|Do you think a Dex enjoyer would like a
    2087|Np1s Erggo? It's It would feel much
    2088|lower like it's not going to like have
    2089|the You could NP1S Erggo really isn't
    2090|that much different from the standard
    2091|NP1S though. So don't
    2092|like Yeah, I wouldn't expect it to feel
    2093|too much like a Dex.
    2094|They really need to release a Super
    2095|Strike Dex. It's the only I'd say it's
    2096|the number one mouse on the market that
    2097|I'm looking forward to. Have you done a
    2098|review on the MOS L7? Like a dedicated
    2099|one? I don't think so. I should do like
    2100|an updated MOR's lineup video now that I
    2101|have this uh K7 V2 Ultra.
    2102|Waiting for NPO1 V2, like just the
    2103|standard NP1 large. Yeah, that would
    2104|that would be something.
    2105|Do you think Chinese clone mice are a
    2106|scam? Um, well, the $20 VXE G305 that
    2107|does have like a 3335 sensor, right?
    2108|It's like you don't have a top tier
    2109|sensor, but you have a functional mouse
    2110|for $20. So, it's pretty good deal.
    2111|Imagine 50 gpx in 2030. That's pretty
    2112|much what we are on pace for. Like, we
    2113|got the 60 g or 63 g super light in
    2114|2020.
    2115|Then 2026, we got the 60 g super strike.
    2116|So, in 20 2030 maybe we get the 50 g
    2117|super strike.
    2118|begging you more. Begging once more that
    2119|you get a pulsar monitor, please. I
    2120|swear I looked into it um like last time
    2121|last time I streamed. I didn't wind up
    2122|getting it for some reason.
    2123|Petition to get 2C Super Strike 40 gram.
    2124|I doubt it would be below 50.
    2125|Think new G305 is poop considering the
    2126|price. I wouldn't
    2127|I really don't think it's that bad if
    2128|you're fine with the um slightly heavier
    2129|weight. Like I think it's better than
    2130|the clones for sure, especially if you
    2131|have like a higher pulling rate dongle
    2132|to hook it up to.
    2133|But yeah, I'm just not I'm not like so
    2134|eggpilled that I would main this or like
    2135|really use it over the more like
    2136|traditional styles of shapes.
    2137|Got any VGN mice? Um there's what is it
    2138|like the Y2 Ultra or the F2 Ultra? Not
    2139|any of their recent stuff though.
    2140|You think everyone will implement the
    2141|Super Strike Tech in their mice
    2142|eventually? Like wooting? Yeah, some
    2143|some equivalent. It may not be the exact
    2144|same, but some type of new switch
    2145|implementation that allows for
    2146|adjustable actuation points, rapid
    2147|trigger, so forth.
    2148|Did you like the VGNF2? I mean, with
    2149|almost every budget mouse, I'm just It's
    2150|just fine for what it is.
    2151|They're really hard to hate on.
    2152|Do pro gamers show up to Boursy Fest?
    2153|Um, not like not like tier one pros, but
    2154|um generally some people with like some
    2155|past gaming experience or just like
    2156|people local to the city. A lot of like
    2157|valorant college player like adjacent
    2158|people.
    2159|Well, this year, yeah, may this year
    2160|they might. Who knows what um who knows
    2161|what's in store? They're coming. Ever
    2162|thought about hosting a tournament at
    2163|Borsyfest? Last year I considered having
    2164|like a Kovac tournament, but it's an
    2165|outside event. Um, so that does make it
    2166|hard and there would just be like one
    2167|PC. The sun would be an issue and it
    2168|might even be
    2169|might even rain. Oh, is Pulsar like
    2170|bringing people? That would be crazy.
    2171|Who do you think? I mean, Final Mouse is
    2172|having It's not the same as the Super
    2173|Strike, but their TMR solution does
    2174|allow for um like
    2175|quicker click actuation. Is it worth it
    2176|to buy the Beast X Pro now? Um if you're
    2177|really looking for like Final Mouse
    2178|style shape, possibly, but they might be
    2179|doing a refresh. Yeah, logistically a
    2180|challenge.
    2181|I still need to think of some more
    2182|games, some last minute familyfriendly
    2183|games.
    2184|What's the best gaming mouse right now?
    2185|I have the Superite. Um, I would say the
    2186|Super Strike, which is just like a
    2187|better version of the Super Light, but
    2188|it's not like necessary for you to buy
    2189|it.
    2190|What's your recommendation for a budget
    2191|mouse around 60? I just posted a review
    2192|of the ATK A9 Mini. I'd say that's like
    2193|one.
    2194|Can you send me some mice?
    2195|I should do some giveaways.
    2196|Um, other than QC polling rate, what is
    2197|the difference between 60?
    2198|Um, there's really not much.
    2199|Just depends on like the company's
    2200|implementation.
    2201|But yeah, around an hour and 30 into the
    2202|stream. I think this is a good time good
    2203|time to end the stream a little bit on
    2204|the shorter end. I just wanted to get a
    2205|stream in before Bozyfest next Saturday.
    2206|Obviously, if you are in New York, um
    2207|surely come out to there. Huh. Now I'm
    2208|getting all sorts of questions. But
    2209|yeah, respect your elders. Appreciate
    2210|everybody who stopped by, everybody who
    2211|uh became a member and so forth.
    2212|Yes. Goodbye.
    </file-view>
  20. Devin
    Thinking

    I've now read the full transcript. Let me summarize the video. Based on the transcript, this is a livestream by "boardzy" titled "RARE GAMING MOUSE DISCUSSION STREAM!" where he answers chat questions about gaming mice, peripherals, and related topics. Key points: - First stream in over a month, post-July 4th Sunday afternoon - Boardzyfest next Saturday July 11th at Owls Head Park, Brooklyn - He's using one monitor only, so stream has technical difficulties (camera freezes due to heat) - He's been mostly using the Logitech Super Strike as his main mouse - Discusses many mice: Viper V4 Pro, Super Strike, CR Draco KO1, ZA12, FK1, Skyrox V6s, G-Tro 5 Superite, Final Mouse, Pulsar Pro Series, ATK mice, Gwolves Lykan, XA25, etc. - Mouse market feels stale; waiting for SLX and new Final Mouse - Plans to make a "mouse company tier list" before Boardzyfest - Announces trip to China in October to visit Gwolves and possibly ATK - Discusses mouse pads (Artisan Zero Soft, Zebra Zero, PD-170, glass pads, X-ray pads, etc.) - Answers questions about keyboards, monitors, Fortnite, Valorant, sports (Knicks, Mets, World Cup, Jets) - Mentions Thiago Tech drama/scam - Various personal topics: hair, beard, weight loss, betting, New York subway - Stream lasted about 1 hour 30 minutes I should provide a concise but comprehensive summary. The user didn't ask a specific question, just pasted the link. So I should summarize the video. Also note the rule says "do not name the session until after reading and understanding the full YouTube video transcript". I have now read the full transcript, so I can name the session if needed, but naming sessions isn't my job typically - the user might be referring to something else. Actually, this seems to be a rule for the user or for when the assistant names a session. I don't typically name sessions, so I'll just summarize. Let me write a summary. I should be concise but cover the main topics.

    Summary: "RARE GAMING MOUSE DISCUSSION STREAM!" by boardzy

    This is a ~90-minute live Q&A stream (recorded July 5, 2026) where boardzy answers chat questions about gaming mice, mouse pads, peripherals, and a mix of personal/misc topics. It was his first stream in over a month, done from a single-monitor setup that caused technical issues (camera overheating/freezing a couple times).

    Main context:

    • Boardzyfest is the following Saturday, July 11, at Owls Head Park, Brooklyn (noon-ish start).
    • He announces a trip to China in October, planning to visit Gwolves/G-Wolves and possibly ATK.
    • He's been grinding Fortnite and is mostly "basic" with his gear right now.

    Mice & peripherals takeaways:

    • Logitech Super Strike remains his main pick and what he considers the best overall mouse, despite stock skates and slightly mushy side buttons. He's been using it over the Viper V4 Pro and hasn't touched his Superlight 2 since the Super Strike came out.
    • Viper V4 Pro: good mouse, convenient web software, good battery/weight, but he questions whether it's worth the upgrade over a discounted V3.
    • CR Draco KO1: underrated, solid all-around; he plans a "most underrated mouse" video on it.
    • Pulsar Pro Series: disappointing overall, except the Zywoo ergo depending on taste.
    • Final Mouse / Starlight-X: still radio silent/shipping uncertain; he's waiting on his order.
    • SLX: expected soon (end of July); he sees it as the only real upcoming Super Strike competitor, though likely much lighter and with a different shape.
    • ATK: best budget deals right now. He praises the ATK A9 Mini Plus (around $35) and the ATK Ghost Extreme/Ultimate. He got an ATK0 for $51 and says it felt as good as his XM2.
    • Zowie ZA12/FK1/S2 DW: coating is good, but Zowie mice tend to be heavy/expensive; he's waiting on lighter refreshes.
    • G-Wolves Lykan is his top small-mouse recommendation right now.
    • Death Adder V4: decent ergo but bulky for him.
    • Keyboards: he's mostly using a Wooting 60HE V2; finds the keyboard market "solved," so he doesn't cover it much.
    • Mouse pads: currently using a Zebra Zero. Artisan still his default cloth recommendation, though he acknowledges many alternatives. Glass pads are okay but he keeps going back to cloth.

    Other notable moments:

    • He plans a mouse company tier list before Boardzyfest.
    • Discussed Thiago Tech drama, Knicks/Mets/World Cup/Jets, NYC heat/subways, and his hair/beard arc.
    • Mentioned upcoming reviews: CR Draco KO1, Final Mouse, Flick Stratus, possibly more Pulsar/ATK content.

    The stream is mostly casual Q&A — no formal reviews, just him riffing on the current mouse scene and hyping Boardzyfest.

    In 6,601Out 1,147Cache 58,112TTFT 721ms
  21. You

    did he talk about the pulsar crazylight series?

  22. Devin
    Thinking

    The user asked if he talked about the Pulsar Crazy Light series. I need to check my memory of the transcript. I recall mentions of "Crazy Light" in the transcript. Let me search the transcript to be accurate. From my reading: - Line 479: "Like the crazy lights for 65, those were an incredible deal." - Line 887: "What is like the best lightweight EC clone? Like Pulsar Crazy Light maybe. Crazy Light medium." - Line 1372: "Just got my Borsy Crazy Light from Prime. Yes. $65 for that. Good God. They were they were giving those away." - Line 1376: "Yeah, there was never a BZY medium crazy light. There should have been though." So yes, he did. Let me provide specific details about what he said. He mentioned: 1. Crazy Light for $65 was an incredible deal (budget recommendation) 2. Best lightweight EC clone might be Pulsar Crazy Light or Crazy Light medium 3. Borsy (Boardzy) Crazy Light from Prime for $65, sold out quickly 4. There was never a BZY medium crazy light, but there should have been He also mentioned in the context of "best lightweight EC clone" that "Crazy Light maybe. Crazy Light medium." Let me search the transcript for exact quotes to be accurate.

    grep(pattern: [Cc]razy [Ll]ight, path: /tmp/youtube_vxVv6F3TOlIU_transcript.txt, outp…)
    {
      "pattern": "[Cc]razy [Ll]ight",
      "path": "/tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "output_mode": "content",
      "context_lines": 2
    }
    In 1,240Out 342Cache 64,640TTFT 715mstool_calls
  23. OutputFound 4 match(es) for pattern '[Cc]razy [Ll]ight' in /tmp/youtube_vxVv6F3TOlIU_transcript.txt:
    Found 4 match(es) for pattern '[Cc]razy [Ll]ight' in /tmp/youtube_vxVv6F3TOlIU_transcript.txt:
    -- 4 matches in /tmp/youtube_vxVv6F3TOlIU_transcript.txt
      885|weight difference. Probably would be too
      886|big. What is like the best lightweight
    > 887|EC clone? Like Pulsar Crazy Light maybe.
    > 888|Crazy Light medium.
      889|Thoughts on WS Ying Magnesium for claw
      890|grip? If you want like a thinner mouse
    ...
     1183|rotation, honestly. Like, no. There's
     1184|not any ergos I'm using.
    >1185|Which crazy light feels the most like
     1186|the OP1 shape? Really, none of them. If
     1187|you claw the OP1 though, you might like
    ...
     1401|It's amazing.
     1402|It's got a glass pad. Feels great with
    >1403|crazy light with jade skates. That seems
     1404|like a solid setup. He and wear down the
     1405|most out of all artisans. Heen is far
  24. Devin
    Thinking

    The grep only found 4 matches but I recall more. Let me also search for "Crazylight" (one word) and "Borsy Crazy Light" or "crazy light" with different casing. But the user asked specifically about "Pulsar crazylight series". Let me search broader.

    grep(pattern: [Cc]razylight|[Cc]razy[Ll]ight|Crazy Lig…, path: /tmp/youtube_vxVv6F3TO…)
    {
      "pattern": "[Cc]razylight|[Cc]razy[Ll]ight|Crazy Light",
      "path": "/tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "output_mode": "content",
      "context_lines": 3,
      "case_insensitive": true
    }
    In 721Out 139Cache 65,792TTFT 1,067mstool_calls
  25. OutputFound 4 match(es) for pattern '[Cc]razylight|[Cc]razy[Ll]ight|Crazy Light' in /tmp/youtube_vxVv6F3TO
    Found 4 match(es) for pattern '[Cc]razylight|[Cc]razy[Ll]ight|Crazy Light' in /tmp/youtube_vxVv6F3TOlIU_transcript.txt:
    -- 4 matches in /tmp/youtube_vxVv6F3TOlIU_transcript.txt
      884|V4? I don't even know if that's a big
      885|weight difference. Probably would be too
      886|big. What is like the best lightweight
    > 887|EC clone? Like Pulsar Crazy Light maybe.
    > 888|Crazy Light medium.
      889|Thoughts on WS Ying Magnesium for claw
      890|grip? If you want like a thinner mouse
      891|for claw could be viable.
    ...
     1182|but it's not something I really keep in
     1183|rotation, honestly. Like, no. There's
     1184|not any ergos I'm using.
    >1185|Which crazy light feels the most like
     1186|the OP1 shape? Really, none of them. If
     1187|you claw the OP1 though, you might like
     1188|the X2H Mini.
    ...
     1400|sell them, so you can give them away."
     1401|It's amazing.
     1402|It's got a glass pad. Feels great with
    >1403|crazy light with jade skates. That seems
     1404|like a solid setup. He and wear down the
     1405|most out of all artisans. Heen is far
     1406|slower than my type 999. That's weird.
  26. Devin
    Thinking

    The grep found 4 matches but I recall lines 479, 1372, 1376 from my reading. Let me search for just "crazy" to find all related mentions.

    grep(pattern: crazy, path: /tmp/youtube_vxVv6F3TOlIU_transcript.txt, output_mode: con…)
    {
      "pattern": "crazy",
      "path": "/tmp/youtube_vxVv6F3TOlIU_transcript.txt",
      "output_mode": "content",
      "context_lines": 2,
      "case_insensitive": true
    }
    In 600Out 99Cache 66,432TTFT 564mstool_calls
  27. OutputFound 12 match(es) for pattern 'crazy' in /tmp/youtube_vxVv6F3TOlIU_transcript.txt:
    Found 12 match(es) for pattern 'crazy' in /tmp/youtube_vxVv6F3TOlIU_transcript.txt:
    -- 12 matches in /tmp/youtube_vxVv6F3TOlIU_transcript.txt
      117|for sales, but it's just it's kind of
      118|how I feel unless you're like in the
    > 119|hyper budget market. Like the crazy
      120|lights for 65, those were an incredible
      121|deal.
    ...
      428|It's an honest job, Bryce. I respect
      429|that. Turning 19. Wait, you're turning
    > 430|N? That's crazy.
      431|Time really flies.
      432|Bozy Fest Manila when I'm consider like
    ...
      526|zebra artisans now. Let's go. I mean,
      527|there's going to be close to 200 at
    > 528|Boursy Fest. It's kind of crazy.
      529|Anywhere. Yes, bro. Anywhere.
      530|Uh, but after China though. And I also
    ...
      737|my China trip. They probably have a HQ I
      738|can visit. I know Wow has the store in
    > 739|Wuhan. That would be crazy. Um,
      740|what browser are we using? I still use
      741|Chrome. It's probably the wrong answer,
    ...
      885|weight difference. Probably would be too
      886|big. What is like the best lightweight
    > 887|EC clone? Like Pulsar Crazy Light maybe.
    > 888|Crazy Light medium.
      889|Thoughts on WS Ying Magnesium for claw
      890|grip? If you want like a thinner mouse
    ...
     1183|rotation, honestly. Like, no. There's
     1184|not any ergos I'm using.
    >1185|Which crazy light feels the most like
     1186|the OP1 shape? Really, none of them. If
     1187|you claw the OP1 though, you might like
    ...
     1369|guys get real experimental with the
     1370|mouse skates, you know. Do as you do as
    >1371|you please. Just got my Borsy Crazy
     1372|Light from Prime. Yes. $65 for that.
     1373|Good God. They were they were giving
     1374|those away. I saw those sold out pretty
     1375|quick though. I was happy about that.
    >1376|Yeah, there was never a BZY medium crazy
     1377|light. There should have been though.
     1378|That would have been a great idea.
    ...
     1401|It's amazing.
     1402|It's got a glass pad. Feels great with
    >1403|crazy light with jade skates. That seems
     1404|like a solid setup. He and wear down the
     1405|most out of all artisans. Heen is far
    ...
     1990|What was the city like after Nick won
     1991|the final? Even in the final, it was
    >1992|crazy. Like people were just chanting on
     1993|the subway. There was definitely like
     1994|like just look how much pre-travel this
    ...
     2168|might even be
     2169|might even rain. Oh, is Pulsar like
    >2170|bringing people? That would be crazy.
     2171|Who do you think? I mean, Final Mouse is
     2172|having It's not the same as the Super
  28. Devin
    Thinking

    Good. Now I have all mentions of "Crazy Light" or "crazy light". Let me compile the specific points: 1. Lines 119-121: In the hyper budget market, "the crazy lights for 65, those were an incredible deal." 2. Lines 887-888: When asked "What is like the best lightweight EC clone?" he says "Like Pulsar Crazy Light maybe. Crazy Light medium." 3. Lines 1185-1188: When asked "Which crazy light feels the most like the OP1 shape?" he says "Really, none of them. If you claw the OP1 though, you might like the X2H Mini." 4. Lines 1371-1377: Someone got the "Borsy Crazy Light from Prime" for $65, and he says "Good God. They were they were giving those away. I saw those sold out pretty quick though. I was happy about that. Yeah, there was never a BZY medium crazy light. There should have been though. That would have been a great idea." 5. Line 1403: "It's got a glass pad. Feels great with crazy light with jade skates. That seems like a solid setup." Wait, line 1403 says "crazy light" lowercase, which seems like it might be referring to the mouse. Let me check context. The line before is about Artisan Zebra Zero pads with a print error. Then "It's got a glass pad. Feels great with crazy light with jade skates." This could be someone saying their "crazy light" mouse with jade skates feels great on a glass pad, or it's the speaker saying "crazy light with jade skates" as a setup. Either way, it's a mention of the Crazy Light mouse. Also line 119 says "the crazy lights for 65" - this is in the context of Pulsar having budget options. "Like the crazy lights for 65, those were an incredible deal." So yes, he talked about it. Let me answer the user clearly.

    Yes, he mentioned the Pulsar Crazy Light series a few times. Here's what he said:

    • Best lightweight EC clone: When asked for the best lightweight EC-clone mouse, he suggested "Pulsar Crazy Light maybe. Crazy Light medium."
    • OP1-shape comparison: When asked which Crazy Light feels most like the OP1 shape, he said "Really, none of them," but if you claw-grip the OP1 you might like the X2H Mini instead.
    • Pricing/deal: He called the Crazy Light at $65 "an incredible deal" and later said a viewer getting the "Borsy Crazy Light from Prime" for $65 was like they were "giving those away." He noted they sold out pretty quickly.
    • Sizes: He wished there had been a BZY (Boardzy) medium Crazy Light, saying "there should have been" and "that would have been a great idea."
    • Setup combo: Someone mentioned (or he noted) that Crazy Light with jade skates on a glass pad feels great.
    In 1,010Out 660Cache 66,944TTFT 550ms