You are powered by GLM-5.2 No Thinking.
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-bindings"},{"name":"cloudflare"},{"name":"cloudflare-docs"},{"name":"cloudflare-builds"},{"name":"playwright"},{"name":"playwright-microsoft"},{"name":"cloudflare-observability"},{"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"}]}
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.
You are powered by SWE-1.7 Lightning.
## 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.
<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: Thursday, 2026-07-16 </system_info>
<rules type="always-on">
<rule name="global_rules" path="/Users/root1/.codeium/windsurf/memories/global_rules.md">
</rule>
<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>
</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. - **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) - **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/.agents/skills/wrangler/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/.agents/skills/cloudflare/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/.claude/skills/durable-objects/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) - **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/.agents/skills/turnstile-spin/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/.codeium/windsurf/skills/cloudflare-email-service/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) - **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) - **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/.claude/skills/agents-sdk/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) - **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) - **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) - **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/.agents/skills/sandbox-sdk/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/.agents/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) - **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**: 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) - **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) - **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) - **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) - **cloudflare-agent-setup**: (source: /Users/root1/.devin/skills/cloudflare-agent-setup/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) - **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) - **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>
[Response interrupted by user]
You are a Summarizer that summarizes conversation history.
You will be shown a conversation between the user and the assistant, a coding agent. You should summarize the conversation + work done for future work to be continued by the coding agent.
Structure your summary as follows:
<summary>
## Overview
A high-level summary of what was being worked on and the overall goal (1-2 sentences).
## Key Details & Breadcrumbs
Important details that may be needed later (key findings, decisions, constraints, error messages, progress or modified files, etc).
For each item, note:
- What it is and why it matters
- If it would be helpful to look at the original source, include citations to message ids or search terms to find the details in the history file
## Current State
What the agent was actively working on when this summary was created:
- The immediate task or step in progress
- Any pending actions or next steps that were planned
- Blockers or questions that need resolution
</summary>
IMPORTANT: Do NOT reproduce or recite any rules, instructions, or guidelines that were included verbatim in the conversation (e.g., content inside <rules> or <rule> tags). Rules will be re-discovered and re-injected as needed when the agent accesses relevant files. Focus on summarizing the work done and decisions made, not the instructions themselves.
Note, the full conversation will be saved to a history file (history_9d326df4a29d4433.md). The full path will be provided alongside the summary you create.
Be concise but ensure someone could resume work using only your summary plus the reference file.search the web, when the neo80 cu released, how much was it selling for?
I'll search the web for info on the Neo80 CU release date and pricing.
{
"INVALID_JSON": "{\"query\": \"Neo80 CU keyboard release date price"
}Tool 'web_search' validation failed: Failed to parse input: missing required field 'query' for tool 'web_search'
{
"query": "Neo80 CU keyboard release date price"
}# Web Search Results for "Neo80 CU keyboard release date price" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard # Neo80 Cu Custom Mechanical Keyboard ... $259.99 ... - $259.99 ... ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 2. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard # Qwertykeys Neo80 Cu Keyboard ... €195,00 ... Estimated Ship Time: 12 Weeks ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Estimated Ship Date: 12 weeks after ordering ## 3. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper ... # [Pre-Order] Neo80 Cu - Copper Bottom ... RM 259.44 ... RM 259.44 RM 0.00 ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Add to Cart • $195.00 ## 5. Neo80 Cu Keyboard Kit (Without Plate) – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/neo80-cu Neo80 Cu Keyboard Kit (Without Plate) – Rebult Keyboards ... # Neo80 Cu Keyboard Kit (Without Plate) ... RM 1,149.00 ... RM 1,149.00 RM 0.00 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine.
Based on the search results, here's what I found about the Neo80 Cu:
The Neo80 Cu pre-order opened on October 11, 2025 at 8 PM (via Rebult Keyboards) and ran through October 23, 2025, 11:59 PM, with estimated fulfillment in December 2025.
Note: Qwertykeys announced a price adjustment effective July 1st, so the $259.99 may reflect the post-adjustment price. The kit weighs around 4.5 kg built and comes in brass or copper bottom variants.
Sources:
i swear it released before that
You're right to question that. Let me dig deeper — the October 2025 date may just be one vendor's pre-order batch, not the original release.
{
"INVALID_JSON": "{\"query\": \"Neo80 Cu keyboard first release date 2024 pre"
}Tool 'web_search' validation failed: Failed to parse input: missing required field 'query' for tool 'web_search'
{
"query": "Neo80 Cu keyboard first release date 2024 pre order"
}# Web Search Results for "Neo80 Cu keyboard first release date 2024 pre order" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ... ### Neo80 Cu ## 2. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ... the date specified above, but ... the latest information. ## 3. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ## 4. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard Qwertykeys Neo80 Cu Keyboard ... # Qwertykeys Neo80 Cu Keyboard ... Made to Order ... This item is a made to order! ... Estimated Ship Time: 12 Weeks ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Estimated Ship Date: 12 weeks after ordering ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ... Made to order items may be ordered with in-stock items. The order will be shipped out once the preorder item arrives in our facility. ## 5. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025
Found it — you're right. There was an earlier batch
continue
Found it — you're right. There was an earlier batch before the October 2025 one.
continue
We need answer user. They want continue. Let's provide corrected info. Need search more maybe find batch 1 date and original price. We have UniKeys Batch 2 Jan 2025. Need find batch 1. Search.
{
"query": "Neo80 Cu keyboard batch 1 release date 2024 original price"
}# Web Search Results for "Neo80 Cu keyboard batch 1 release date 2024 original price" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard # Neo80 Cu Custom Mechanical Keyboard ... $259.99 ... - $259.99 ... ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 2. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard # Qwertykeys Neo80 Cu Keyboard ... €195,00 ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ## 3. (Pre Order) Neo80 Keyboard Kit May 24 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-may-24 (Pre Order) Neo80 Keyboard Kit May 24 ... # (Pre Order) Neo80 Keyboard Kit May 24 ... £85.00 ... Expected to ship Q3-Q4 2024 ... Pre-Order Open May 22nd - June 3rd 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... UPDATE for May 24 Pre-Order ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ## 4. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... $154.99 USD ... $154.99 USD ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ## 5. (Pre Order) Neo80 Keyboard Kit June 24 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-june-24 (Pre Order) Neo80 Keyboard Kit June 24 ... # (Pre Order) Neo80 Keyboard Kit June 24 ... £85.00 ... Expected to ship Q3-Q4 2024 ... Pre-Order Open June 17th - June 25th 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
Need find Neo80 Cu specifically original launch. Search results: Neo80 (non-Cu) launched May/June 2024. Neo80 Cu Batch 2 Jan 2025. Need batch 1 likely late 2024. Search more.
{
"query": "\"Neo80 Cu\" \"batch 1\" \"pre-order\" 2024"
}# Web Search Results for ""Neo80 Cu" "batch 1" "pre-order" 2024" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 2. Group Buy Keyboard Updates URL: https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504 | Neo75 Keyboard | Estimated shipping end of Q1, 2026 | | Neo80 Cu Keyboard Batch 2 | Shipping complete. | | Neo98 Keyboard | Estimated shipping end of Q1, 2026 | ## 3. Neo Studio – Rebult Keyboards URL: https://www.rebultkeyboards.com/collections/neo-studio FREE SHIPPING WITHIN MALAYSIA + FREE BATIK POUCH Neo80 Cu Keyboard Kit (Without Plate) RM 1,039.00 - RM 1,149.00 RM 1,039.00 - RM 1,149.00 RM 0.00 Anodized Taupe Grey/Copper Bottom/Mirror Champagne SS Weight/WK Anodized Taupe Grey/Brass Bottom/Machining-Mark SS Weight/WK Anodized Slate Blue/Copper Bottom/Mirror Dusk SS Weight/WK +1 ... Neo80 Cu - Extra Parts RM 25.00 - RM 259.00 RM 25.00 - RM 259.00 RM 0.00 Extra SS Battery Compartment Fillers Alu Plate PP Plate +8 ... [Pre-Order] Neo80 Cu - Brass Bottom RM 915.00 - RM 1,219.00 RM 915.00 - RM 1,219.00 RM 0.00 ... [Pre-Order] Neo80 Cu - Copper Bottom RM 979.00 - RM 1,285.00 RM 979.00 - RM 1,285.00 RM 0.00 ... [Pre-Order] Extra Parts for Neo80 Cu RM 25.00 - RM 259.00 RM 25.00 - RM 259.00 RM 0.00 Extra SS Battery Compartment Fillers Alu Plate PP Plate +8 ... Keyboard Kit (Without ... 605.00 - ... 745.00 ... 605.00 - ... 745.00 RM 0.00 ... [Pre-Order] Neo80 (Anodized) - May. 2024 Batch RM 530.00 - RM 835.00 RM 530.00 - RM 835.00 RM 0.00 ... [Pre-Order] Neo80 (Spray Coated) - May. 2024 Batch RM 600.00 - RM 905.00 RM 600.00 - RM 905.00 RM 0.00 ... [Pre-Order] Neo80 Extra Parts - May. 2024 Batch RM 25.00 - RM 255.00 RM 25.00 - RM 255.00 RM 0.00 Tri-mode Non-flex cut Hotswap PCB Wired Non-flex cut Hotswap PCB Solder Non-flex cut PCB +8 ... [Pre-Order] Neo80 (Raw) - May. 2024 Batch RM 510.00 - RM 815.00 RM 510.00 - RM 815.00 RM 0.00 ## 4. (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-batch-10 (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... # (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... ##### This Group Buy has ended and can no longer be ordered. Try searching Pre-Orders or our In Stock range. ... £158.33 ... This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... Expected Shipping time: late Q3 2026 ... Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ## 5. Neo65 – Qwertykeys URL: https://www.qwertykeys.com/en-de/products/neo65-1 I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ... #### This is a pre-order item. ... #### Estimated Fulfillment time: 4 weeks ... We'll lock orders for fulfilment every 7 days. For example, orders placed between Aug. 30th and Sep. 5th will be locked for fulfilment on Sep. 6th as a batch. We expect to fulfill all orders of each batch within 2-4 weeks after each batch ends. The actual timing is subject to change based on the total units sold.
We need original release info. Search with "Neo80 Cu first batch" or "Neo80 Cu group buy 2024" or "Neo80 Cu launch date".
{
"query": "Neo80 Cu first batch release date Qwertykeys group buy 2024"
}# Web Search Results for "Neo80 Cu first batch release date Qwertykeys group buy 2024" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... ## Neo80 Cu ## 2. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ## 3. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard Qwertykeys Neo80 Cu Keyboard – Divinikey ... # Qwertykeys Neo80 Cu Keyboard ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Estimated Ship Date: 12 weeks after ordering ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ## 4. [GB] Neo80 CU by Qwertykeys – pantheonkeys URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys [GB] Neo80 CU by Qwertykeys – pantheonkeys ... ## [GB] Neo80 CU by Qwertykeys ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026 ## 5. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit Pre-Order Ends: 30th November 2025 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
Search didn't find batch 1. Let's search via google with different terms: "Neo80 Cu" "first group buy" "batch 1" "2024" site:reddit.com or "Neo80 Cu" release.
{
"query": "\"Neo80 Cu\" release date \"2024\" \"group buy\""
}# Web Search Results for ""Neo80 Cu" release date "2024" "group buy"" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... Estimated Fulfillment Time: 8 ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... Brass/Copper Bottom ... : +$20 USD ... ## Neo80 Cu ## 2. [GB] Neo80 CU by Qwertykeys – pantheonkeys URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys [GB] Neo80 CU by Q ... keys – pantheonkeys ... ## [GB] Neo80 CU by Qwertykeys ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026 ## 3. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper ... [Pre-Order] Neo8 ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ... - By placing an order, you agree to the terms stated above. - This is a group buy/pre-order item. By placing an order you agree with the delivery date and acknowledge that the date may be subject to changes due to manufacturing or shipping delays. - Do not mix Pre Order and non Pre Order items in the same order, as well as items from different Pre Orders/GBs in the same order. - Strictly no refunds/cancellations after Pre Order period has ended. 5% processing fee applicable for refunds/cancellations during the Pre Order period. ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ## 5. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
Search not giving batch 1. Let's search "Neo80 Cu batch 1 UniKeys"
{
"query": "\"Neo80 Cu\" \"Batch 1\" UniKeys"
}# Web Search Results for ""Neo80 Cu" "Batch 1" UniKeys" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... Top Case: WK ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Typing angle ... 8 degree ... Size: 80% TKL**,** 355.5mm * 134 mm ... Layout: WK/WKL ... Brass weight + Brass bottom: 5.3kg ... Copper weight + Copper bottom: 5.415kg ## 2. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard Qwertykeys Neo80 Cu Keyboard – Divinikey ... # Qwertykeys Neo80 Cu Keyboard ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Qwertykeys Neo80 Cu Keyboard Features: ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ... ## Neo80 Cu ... Built around the beloved 80% layout, this keyboard is a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... ## Full Copper & Brass Bottom ... Despite its large 80% layout, Neoworks has maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Like most Neo ... bottom case features a partitioned acoustic chamber to minimize hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without any foam. ... Poron Gasket structure has been integrated into the Neo80 Cu. Unlike traditional Poron Gaskets that require gluing to the case, the Neo80 Cu was designed with special grooves in the bottom case to securely hold the Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional durability over time. Silicone gasket mount structure is also retained, as an alternative option for those who prefer it. ... In addition to the ne... ## 3. 80% Keyboard – UniKeys URL: https://unikeyboards.com/en-jp/collections/80-keyboard ### Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... From ¥24,684 JPY ## 4. Mechanical Keyboards & Custom Keyboard Kits | 60%, 75%, TKL, Full Size | Unikeys – UniKeys URL: https://unikeyboards.com/en-ie/collections/mechanical-keyboards ### Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... From €167,49 EUR ## 5. Group Buy Keyboard Updates URL: https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504 | Neo75 Keyboard | Estimated shipping end of Q1, 2026 | | Neo80 Cu Keyboard Batch 2 | Shipping complete. | | Neo98 Keyboard | Estimated shipping end of Q1, 2026 |
Need more definitive. Maybe user says it released before that (they think earlier). There is "Neo80" original in May 2024 (aluminum, not Cu). Could the user confuse Neo80 vs Neo80 Cu? But they specifically ask about Neo80 Cu. Need verify first release. Search via Reddit.
{
"query": "Neo80 Cu group buy reddit 2024 release"
}# Web Search Results for "Neo80 Cu group buy reddit 2024 release" ## 1. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ... - By placing an order, you agree to the terms stated above. - This is a group buy/pre-order item. By placing an order you agree with the delivery date and acknowledge that the date may be subject to changes due to manufacturing or shipping delays. - Do not mix Pre Order and non Pre Order items in the same order, as well as items from different Pre Orders/GBs in the same order. - Strictly no refunds/cancellations after Pre Order period has ended. 5% processing fee applicable for refunds/cancellations during the Pre Order period. ## 2. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ## 3. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... $259.99 ... techs, ... day or a day later ... QK) ... day or a day later as Q ... Prototyp ... Fulfillment Status: ... Visit Discord to view fulfillment status ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... ## Neo80 Cu ... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... Neo80 ... Not only are we bringing back the fan-favorite Teal from the Neo series, but we’re also introducing a stunning lineup of fresh colors — Slate Blue, Taupe Grey, Dusty Rose, Jade, and Ruby Rose, giving you even more ways to make your keyboard truly yours. ## 4. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... Follow Group Buy / Pre-Order Updates Here ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ... Thes... ## 5. Neo80 Cu Keyboard Kit (Without Plate) – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/neo80-cu Neo80 Cu Keyboard Kit (Without Plate) – Rebult Keyboards ... # Neo80 Cu Keyboard Kit (Without Plate) ... RM 1,149.00 ... RM 1,149.00 RM 0.00 ... SS Weight/WK, Tri-Mode ... Hotswap PCB - Sold Out Anodized Taupe Grey/Brass ... -Mark SS Weight ... WK, Tri-Mode ... Hotswap PCB - Sold Out Anodized Slate Blue/Copper ... /Mirror Dusk SS Weight/ ... -Mode ANSI Hotswap ... - Sold Out An ... ized Dusty Rose ... Copper Bottom/Mirror Champagne ... -Mode ANSI H ... Plate not included yet, please add it to cart here and checkout together ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ... For further information on the product, check it out at Neo's Notion Page. ... - Typing angle:8 degree ... - Front height:18 mm ... - Size:80% TKL, 355.5mm * 134 mm ... - Layout: WK/WKL - Weight: Around 4.5 kg after assembly
Search results not obvious. Let's check Qwertykeys product page for price adjustment and maybe release date. Also maybe batch 1 date in page? Use webfetch.
{
"url": "https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard"
}# Web Content from https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
[Skip to content][1]
For U.S. customers, no additional taxes or customs clearance fees are required.
[
Need help? We're here!
][2]
Free Shipping on Extra Parts Orders Over $200 (Owlstabs Excluded)
Pause slideshow Play slideshow
* [Home][3]
* Shop By Brand
Shop By Brand
* Shop By Category
Shop By Category
* Shop Accessory
Shop Accessory
* Build Guide Collection
Build Guide Collection
* [Firmware and Software][4]
* Discord Server
Discord Server
* [After-sale Support][5]
United States (USD $)
[ Login ][6]
* [Facebook ][7]
* [Instagram ][8]
* [YouTube ][9]
* [TikTok ][10]
* [Pinterest ][11]
[ Search][12] Site navigation
[ Qwertykeys][13]
* [ HomeHome][14]
* Shop By BrandShop By Brand
* [Neo Studio][15]
* [Neo98 & Neo75 (Prebuilt Version)][16]
* [Neo98][17]
* [Neo75][18]
* [Neo80 Cu][19]
* [Neo65 Sonic He+][20]
* [Neo65 Core Plus][21]
* [Neo65 Cu][22]
* [Neo60 Cu][23]
* [Neo60 Core][24]
* [Neo75 Cu][25]
* [Neo Ergo][26]
* [Neo65][27]
* [Qwertykeys][28]
* [QK100 Mk2][29]
* [QK80 Mk2 (Prebuilt Version)][30]
* [QK65 Mk3 (Prebuilt Version)][31]
* [QK101][32]
* [QK80 Mk2][33]
* [QK Alice Duo][34]
* [QK65 Mk3 Keycaps][35]
* [QK-Keycaps][36]
* [Owlab & Percent Studio][37]
* [PT750][38]
* Shop By CategoryShop By Category
* [Pre-built Keyboard][39]
* [QK100 Mk2][40]
* [Neo98 & Neo75 (Prebuilt Version)][41]
* [QK80 Mk2 (Prebuilt Version)][42]
* [QK65 Mk3 (Prebuilt Version)][43]
* [Neo65 Sonic He+][44]
* [Hall Effect Keyboard][45]
* [Neo65 Sonic He+][46]
* [60% and less][47]
* [Neo60 Cu ][48]
* [Neo60 Core][49]
* [Volt Plus+][50]
* [65% Keyboards][51]
* [QK65 Mk3 (Prebuilt Version)][52]
* [Neo65 Sonic He+][53]
* [Neo65 Core Plus][54]
* [Neo65 Cu][55]
* [Neo65][56]
* [70% & 75% Keyboards][57]
* [Neo75(Prebuilt Version)][58]
* [Neo75][59]
* [Neo75 Cu][60]
* [PT750][61]
* [TKL Keyboards][62]
* [QK80 Mk2(Prebuilt Version)][63]
* [Neo80 Cu][64]
* [QK80 Mk2][65]
* [100% Keyboards][66]
* [Neo98(Prebuilt Version)][67]
* [Neo98][68]
* [QK101][69]
* [Ergonomic Keyboards][70]
* [Neo ergo][71]
* [QK Alice Duo][72]
* [Keycaps][73]
* [QK-Keycaps][74]
* [QK65 Mk3 Keycaps][75]
* Shop AccessoryShop Accessory
* [Neo Parts][76]
* [QK Parts][77]
* [Owlab Parts][78]
* Build Guide CollectionBuild Guide Collection
* [Owlab Build Guides][79]
* [QK Build Guides][80]
* [Neo Build Guides][81]
* [ Firmware and SoftwareFirmware and Software][82]
* Discord ServerDiscord Server
* [Discord - QK & Neo][83]
* [Discord - OwLab][84]
* [ After-sale SupportAfter-sale Support][85]
[ Search][86][ Login][87][ Cart0 ][88] Site navigation
Search
Search
Clear
Product Highlights
Wireless Support
VIA Support
ISO Support
Custom Keyboard
# Neo80 Cu Custom Mechanical Keyboard
$259.99
4.0
1 review 1 total reviews
Layout
Layout: WK
* WK
Top Case
Top Case: Anodized Silver
* Anodized Silver
* Anodized Slate Blue
* Anodized Teal
* Anodized Black
* Anodized Taupe Grey
* Anodized Dusty Rose
* Anodized Jade
* Anodized Ruby Rose
* Anodized Mont Blanc
* Spray-coated Retro White
Bottom Case
Bottom Case: Brass Bottom
* Brass Bottom
* Copper Bottom
Weight
Weight: Mirror Silver SS Weight
* Mirror Silver SS Weight
* Mirror Gunmetal SS Weight
* Mirror Dusk SS Weight
* Brass Weight
* Copper Weight
PCB
PCB: Wired ANSI Hotswap PCB
* Solder PCB
* Wired ANSI Hotswap PCB
* Tri-mode ANSI Hotswap PCB
* Tri-mode ISO Hotswap PCB
Plate
Plate: Plateless
* Plateless
* ALU Plate
* PP Plate
* PEI Plate
* Glossy-chamfer ALU Plate
Product variants
WK / Anodized Silver - $64.99 WK / Anodized Slate Blue - $64.99 WK / Anodized Teal - $64.99 WK /
Anodized Black - $64.99 WK / Anodized Taupe Grey - $64.99 WK / Anodized Dusty Rose - $64.99 WK /
Anodized Jade - $64.99 WK / Anodized Ruby Rose - $64.99 WK / Anodized Mont Blanc - Sold Out - $64.99
WK / Spray-coated Retro White - $64.99
I acknowledge that this item is a pre-order product and understand that it will require a lead time
before shipment.
I have reviewed and acknowledged the disclaimers, product introduction, QC standards, and shipping
and return policy outlined below.
Add to cart
- $259.99
Product Highlights
Wireless Support
VIA Support
ISO Support
Custom Keyboard
Product Layout
[Neo80 Cu Custom Mechanical Keyboard]
Please note:
* Because of its properties, PEI plates may not be perfectly flat after processing. Slight
unevenness is normal for this material.
* Since the top-mount screws are fixed through the plate, choosing a solder PCB with a plateless
configuration makes top-mounting unavailable.
* Renders are for reference only. Please note that actual product colors may vary under different
lighting conditions. Color differences between the render and the actual product will not be
considered a quality issue.
* Dusk are random mixes of gradients, so the result on each unit may vary.
* Dusk features random gradient mixtures, making each unit unique.
* Specific color selections for Dusk are not available.
* Dissatisfaction with Dusk's iridescent colors is not a valid reason for return.
* Dusk colors may include single or multiple variations as shown in the render, with varying shades
and intensities.
* Purchase indicates acceptance of the above terms.
Essential Information Before Purchasing:
1. **If you need to ship to a different address, please place an order using a different account.
Otherwise, the system may automatically combine your orders and ship them to the same address.**
2. **All products on this page are final sale items. Once an order is placed, no changes or
cancellations will be accepted**
Regional Vendors:
**Canada**: Unikeys, [Keybay ][89] and [deskhero.ca][90] (Oct 10th)
**Indonesia**: Mechaland (same day or a day later as QK)
**Korea&Japan**: Swagkeys
**Malaysia and Brunei**: Rebult and Mecha (same day or a day later as QK)
**Oceania (Australia, New Zealand and etc)**: KeebzNCables, BerserKeys and Gara Studio (same day or
a day later as QK), QK Australia
**Singapore and Pakistan**: Qwertyqop, [Ktechs][91], Pantheonkeys (same day or a day later as QK)
**Taiwan**: Inpad
**Thailand, Laos, and Myanmar**: Keypro and [Aiglatson Studio][92] (same day or a day later as QK)
**Vietnam**: [MOKB][93] (same day or a day later as QK)
**Europe**: [Monacokeys][94], Coffeekeys, Eloquent, Delta and Keygem(same day or a day later as QK)
**UK**: Prototypist
Fulfillment Status:
[Visit Discord to view fulfillment status][95]
Free Shipping with Your Keyboard
This is a **pre-order** product.
Estimated Fulfillment Time: **8 weeks**
One-Year Functionality Warranty
[Neo80 Cu Custom Mechanical Keyboard]
Neo80 Cu Custom Mechanical Keyboard
WK / Anodized Silver
$259.99
Add to cart
## **Price Adjustments**
The **Neo Cu line** will have a price adjustment at **July 1st, 12:00 AM EDT**.
If you'd like to order at the current pricing, please don’t miss the last chance:
### **Neo65 Cu**
Brass/Copper Bottom Case: **+$15 USD**
### **Neo75 Cu**
Brass/Copper Bottom Case: **+$15 USD**
### **Neo80 Cu**
Brass/Copper Bottom Case: **+$20 USD**
Brass/Copper Weight: **+$10 USD**
[Load video: ]
## Neo80 ***Cu***
The **Neo80 Cu** is built around the beloved 80% layout, a proven favorite among professionals and
enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance
between compact design and practical usability, making it ideal whether you're upgrading your
workspace or seeking a reliable daily driver.
## Star Ring Accent Light
## Elegant, Floating Silhouette
## 3D Curved Weight
## Three-toned Design
Page 1 Page 2 Page 3 Page 4
## Full Copper & Brass Bottom
Despite its large 80% layout, we've maintained the Cu series's signature all-copper bottom
design—bringing the keyboard's total weight to approximately **4.5 kg** when fully assembled.
[ Does weight matter? ][96]
## Acoustic Chamber Design with Integrated Forcebreak
Like most Neo keyboards, the bottom case features a **partitioned acoustic chamber** to minimize
hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and combined
with the copper base, deliver the **deep, clean** "copper bottom" typing sound that Neo fans love,
without any foam.
## **The Star Ring Accent Light**
Inspired by massive celestial bodies, whose gravity warps surrounding space, the Neo80 Cu's top case
features a multi-layered "star ring" light that captures the brilliance of a planet against the dark
night sky.
The central "planet" features a **triple-etched aluminum finish**, surrounded by a mirrored
stainless-steel ring, creating a striking "floating planet" effect.
## Weight Design
On the back, the intersection of the weight and the bottom case features a carefully sculpted slope
that softens transitions. The compass-inspired Cu series logo sits in the center, showcasing the
iconic symbolism of the Neo brand.
## **Mounting Structure**
***Poron Gasket Mount***** + *****Silicone Gasket Mount***** + *****Top Mount***
We've integrated the Poron Gasket structure into the Neo80 Cu. Unlike traditional Poron Gaskets that
require gluing to the case, we've designed special grooves in the bottom case to securely hold the
Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional
durability over time. Of course, we've also retained the silicone gasket mount structure as an
alternative option for those who prefer it.
*Since the top-mount screws are fixed through the plate, choosing a solder PCB with a plateless
configuration makes top-mounting unavailable
## Plate Design: Research & Innovation
Glossy-chamfer ALU Plate Predecessor
## Predecessor
After listening to our community, we designed a flex-cut aluminum p… (28 chars truncated)
… (309 lines truncated)
<truncation_notice>
Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/ab550956/content.txt
</truncation_notice>Qwertykeys product page doesn't list release date, but there is price adjustment July 1st. Also variant pricing weird: top case $64.99? Wait product page displays variants for top case at $64.99 because variants not full price? The main price $259.99 base. Need original price maybe before price adjustment? Could be $239.99? Let's search for "Neo80 Cu price adjustment" or "Neo80 Cu original price".
{
"query": "\"Neo80 Cu\" \"price adjustment\" July original price"
}# Web Search Results for ""Neo80 Cu" "price adjustment" July original price" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/en-de/products/neo80-cu-custom-mechanical-keyboard ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 2. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/en-nl/products/neo80-cu-custom-mechanical-keyboard ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 3. Neo65 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo65-cu-custom-mechanical-keyboard ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 4. Qwertykeys Neo80 Starting at $172.99 - Best Deals URL: https://keeb-finder.com/keyboards/neo80-tkl-iso-ansi-aluminium-keyboard-kit-in-stock-extras Qwertykeys Neo80 Starting at $172.99 - Best Deals ... Compare prices from $173.00 to $188 · Popularity rank 101 in Keyboards ... ## Compare prices and purchase options ... Qwertykeys Neo80 Cu Keyboard ... $173 ... 173 ... (USD) | Link* | ... | --- | --- | --- | --- | --- | --- | | Qwertykeys Neo80 Cu Keyboard | | Qwertykeys Neo80 | | ? | ... ## Price history ... The price history chart tracks the lowest price over time (excluding shipping costs). ... $173 ... $160 ... $170 ... $170 ... $186 ## 5. [GB] Neo80 CU by Qwertykeys – pantheonkeys URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys $238.00 SGD ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026
Need original release date of Neo80 Cu. Maybe the user says "i swear it released before that" referencing my earlier response of Oct 2025. They are right, there was Batch 2 in Jan 2025 and possibly earlier. Need find first batch. Could be Qwertykeys had a "global pre-order Jan 13 2025" as Batch 2. So first batch perhaps October 2024? Let's search "Neo80 Cu" "batch 1" not UniKeys.
{
"query": "\"Neo80 Cu\" \"group buy\" \"2024\" \"batch\""
}# Web Search Results for ""Neo80 Cu" "group buy" "2024" "batch"" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... $154.99 USD ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 2. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ## 3. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... RM 259.44 ... FREE SHIPPING WITHIN MALAYSIA (EAST MALAYSIA INCLUDED) ... 1 UNIT PER ORDER, YOU CAN PLACE MULTIPLE ORDERS ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ... - By placing an order, you agree to the terms stated above. - This is a group buy/pre-order item. By placing an order you agree with the delivery date and acknowledge that the date may be subject to changes due to manufacturing or shipping delays. - Do not mix Pre Order and non Pre Order items in the same order, as well as items from different Pre Orders/GBs in the same order. - Strictly no refunds/cancellations after Pre Order period has ended. 5% processing fee applicable for refunds/cancellations during the Pre Order period. ## 4. [GB] Neo80 CU by Qwertykeys – pantheonkeys URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys [GB] Neo80 CU by Qwertykeys – pantheonkeys ... ## [GB] Neo80 CU by Qwertykeys ... $238.00 ... Out of stock ... a pre-order item, please do not add other in stock items to your ... ordering or your ... will be cancelled ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026 ... - Group buy lead times are estimates, and delivery may take longer than expected. ... - Orders can be canceled during the group buy period, subject to a 4% cancellation fee for Singapore orders and 4.5% for international orders. Once the group buy has ended, cancellations and refunds will no longer be accepted. ## 5. Neo80Cu – ktechs URL: https://ktechs.store/products/neo80cu Group Buys & Pre-Orders ... # Neo80Cu ... 238.0 ... 223.00 SGD / Save 6% Sold out ... I understand that this is a group buy/ pre-order product and have read and understood the Group Buy & Pre-Order Policy ... ⚠️ Please agree to the terms of our Group Buy & Pre-Order Policy to proceed. ... Pickup currently unavailable at Yu Li Industrial Building ... Groupbuy Details ... Group Buy: The current pre-order ends 31st January 2026Fulfilment: 3 months after end of pre-order(Please note that fulfilment may be delayed due to manufacturing, dates and timeline reflected are an estimate.) ... Group Buy & Pre-Order Policy ... This is a pre-order product, read more about our policy here. ... Neo80 ... $238.00 SGD $223.00 SGD /
Search not yielding. Maybe first release was in Jan 2025. Let's look at UniKeys Batch 2 page, maybe mentions Batch 1. Use webfetch.
{
"url": "https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order"
}# Web Content from https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
[ Skip to content ][1]
* [ Facebook ][2]
* [ Instagram ][3]
* [ YouTube ][4]
* [ TikTok ][5]
* [ Reddit ][6]
* [ Discord ][7]
* [ JOIN OUR DISCORD COMMUNITY! ][8]
* [ For UK Customers: (VAT not included) Low-rate shipping for orders value under $155 USD ][9]
[ Contact us ][10]
[ Log in ][11]
* [ ON SALE hot ][12]
* [ New Arrivals ][13]
* [ ALL ][14]
* [ Keyboards ][15]
* [ Shop By Layout ][16]
* [ Hall Effect Magnetic Keyboard ][17]
* [ 40% Keyboard ][18]
* [ 60% Keyboard ][19]
* [ 65% Keyboard ][20]
* [ 75% Keyboard ][21]
* [ 80% Keyboard ][22]
* [ Full Size Keyboard ][23]
* [ Alice Keyboard ][24]
* [ Ticktype ][25]
* [ Evo75 ][26]
* [ EVO80 ][27]
* [ DP104 ][28]
* [ Qwertykeys ][29]
* [ Neo75 ][30]
* [ Neo98 ][31]
* [ Neo80 CU ][32]
* [ Hex80 ][33]
* [ Metapulse EC Kit ][34]
* [ GDK KV1-65% ][35]
* [ Switches ][36]
* [ A Complete Switch Buying Guide ][37]
* [ Most Popular ][38]
* [ HMX ][39]
* [ Keygeek ][40]
* [ Wingtree ][41]
* [ Shop By Brand (A-H) ][42]
* [ ALL SWITCHES ][43]
* [ Unikeys Design ][44]
* [ Akko ][45]
* [ BSUN ][46]
* [ Cherry ][47]
* [ Duhuk Lumia ][48]
* [ Grain Gold ][49]
* [ G-Square Studio ][50]
* [ Gateron ][51]
* [ HMX ][52]
* [ HMX Retro Series ][53]
* [ HAIMU ][54]
* [ Huano ][55]
* [ Shop By Brand (J-Z) ][56]
* [ Jerrzi ][57]
* [ JWICK ][58]
* [ Keygeek ][59]
* [ Kailh ][60]
* [ KTT ][61]
* [ LCET ][62]
* [ Lichicx ][63]
* [ Leobog ][64]
* [ MMD ][65]
* [ Outemu ][66]
* [ WEKT ][67]
* [ WingTree ][68]
* [ Shop By SWITCH TYPE ][69]
* [ Linear Switches ][70]
* [ Tactile Switches ][71]
* [ Silent Switches ][72]
* [ HE Magnetic Switch ][73]
* [ Switch modding and vintage ][74]
* [ Keycaps ][75]
* [ Most Popular ][76]
* [ Keykobo ][77]
* [ Monster Lab ][78]
* [ GMK ][79]
* [ MW ][80]
* [ SWG ][81]
* [ Shop By Brand ][82]
* [ DCS ][83]
* [ Domikey ][84]
* [ GMK ][85]
* [ GoMaster ][86]
* [ IDK Keycaps ][87]
* [ KeyKoBo ][88]
* [ KAP ][89]
* [ Keyboard Science ][90]
* [ Monster Lab ][91]
* [ Milkeyway Keys ][92]
* [ PBTfans ][93]
* [ SWG ][94]
* [ Soul Cat Keycaps ][95]
* [ TUT Keycaps ][96]
* [ Themed Keycaps ][97]
* [ WINMIX Retros ][98]
* [ Shop By Keycap Profile ][99]
* [ Cherry Profile Keycap ][100]
* [ PBS Profile Keycap ][101]
* [ GSA Profile Keycap ][102]
* [ Shop By Keycap Material & Finish ][103]
* [ ABS Keycaps ][104]
* [ PBT Keycaps ][105]
* [ PBT Dye-Sub Keycaps ][106]
* [ PBT Double-Shot Keycaps ][107]
* [ Artisan Keycaps ][108]
* [ Keyboard Cables ][109]
* [ All ][110]
* [ Unknown Error ][111]
* [ Tools and Accessories ][112]
* [ All ][113]
* [ Stabilizers ][114]
* [ Knight V4 Stabilizer ][115]
* [ All Stabilizers ][116]
* [ Switch Springs ][117]
* [ All ][118]
* [ Kaidi Spring ][119]
* [ TTC Spring ][120]
* [ TX Spring ][121]
* [ TX Accessories ][122]
* [ All ][123]
* [ Keyboard PCB ][124]
* [ TKL PCB ][125]
* [ Keyboard Wrist Rest ][126]
* [ All ][127]
* [ XIYAN DESIGN ][128]
* [ Unikeys Black Walnut Wrist Rest ][129]
* [ Deskmat ][130]
* [ All ][131]
* [ 80 Retros ][132]
* [ Keyboard Trinkets ][133]
* [ Facebook ][134]
* [ Instagram ][135]
* [ YouTube ][136]
* [ TikTok ][137]
* [ Reddit ][138]
* [ Discord ][139]
Clear Search
### Popular searches
[ Keyboard Switches ][140] [ Mechanical Keyboard ][141] [ Keyboard Keycaps ][142] [ Coiled Keyboard
Cable ][143] [ Keyboard Accessories ][144] [ Mechanical Keyboard Switches ][145] [ PBT Keycaps
][146] [ ABS Keycaps ][147]
Search page
[
[UniKeys]
][148]
[ Log in ][149] [ $0.00 Total $0.00 in cart ][150]
* [hot ON SALE ][151]
* [New Arrivals ][152]
* [ALL][153]
* [Keyboards][154]
* ### [Shop By Layout][155]
* [Hall Effect Magnetic Keyboard][156]
* [40% Keyboard][157]
* [60% Keyboard][158]
* [65% Keyboard][159]
* [75% Keyboard][160]
* [80% Keyboard][161]
* [Full Size Keyboard][162]
* [Alice Keyboard][163]
* ### [Ticktype][164]
* [Evo75][165]
* [EVO80][166]
* [DP104][167]
* ### [Qwertykeys][168]
* [Neo75][169]
* [Neo98][170]
* [Neo80 CU][171]
* [Hex80][172]
* ### [Metapulse EC Kit][173]
* ### [GDK KV1-65%][174]
* [Switches][175]
* ### [A Complete Switch Buying Guide][176]
* ### [Most Popular][177]
* [HMX][178]
* [Keygeek][179]
* [Wingtree][180]
* ### [Shop By Brand (A-H)][181]
* [ALL SWITCHES][182]
* [Unikeys Design][183]
* [Akko ][184]
* [BSUN][185]
* [Cherry ][186]
* [Duhuk Lumia][187]
* [Grain Gold][188]
* [G-Square Studio][189]
* [Gateron][190]
* [HMX][191]
* [HMX Retro Series][192]
* [HAIMU ][193]
* [Huano][194]
* ### [Shop By Brand (J-Z)][195]
* [Jerrzi][196]
* [JWICK][197]
* [Keygeek][198]
* [Kailh][199]
* [KTT ][200]
* [LCET][201]
* [Lichicx][202]
* [Leobog][203]
* [MMD][204]
* [Outemu][205]
* [WEKT][206]
* [WingTree][207]
* ### [Shop By SWITCH TYPE][208]
* [Linear Switches][209]
* [Tactile Switches][210]
* [Silent Switches][211]
* [HE Magnetic Switch][212]
* ### [Switch modding and vintage][213]
* [Keycaps][214]
* [Most Popular][215]
* [ Keykobo ][216]
* [ Monster Lab ][217]
* [ GMK ][218]
* [ MW ][219]
* [ SWG ][220]
* [Shop By Brand][221]
* [ DCS ][222]
* [ Domikey ][223]
* [ GMK ][224]
* [ GoMaster ][225]
* [ IDK Keycaps ][226]
* [ KeyKoBo ][227]
* [ KAP ][228]
* [ Keyboard Science ][229]
* [ Monster Lab ][230]
* [ Milkeyway Keys ][231]
* [ PBTfans ][232]
* [ SWG ][233]
* [ Soul Cat Keycaps ][234]
* [ TUT Keycaps ][235]
* [ Themed Keycaps ][236]
* [ WINMIX Retros ][237]
* [Shop By Keycap Profile][238]
* [ Cherry Profile Keycap ][239]
* [ PBS Profile Keycap ][240]
* [ GSA Profile Keycap ][241]
* [Shop By Keycap Material & Finish][242]
* [ ABS Keycaps ][243]
* [ PBT Keycaps ][244]
* [ PBT Dye-Sub Keycaps ][245]
* [ PBT Double-Shot Keycaps ][246]
* [Artisan Keycaps][247]
* [Keyboard Cables][248]
* [All][249]
* [Unknown Error ][250]
* [Tools and Accessories][251]
* [All ][252]
* [Stabilizers][253]
* [ Knight V4 Stabilizer ][254]
* [ All Stabilizers ][255]
* [Switch Springs][256]
* [ All ][257]
* [ Kaidi Spring ][258]
* [ TTC Spring ][259]
* [ TX Spring ][260]
* [TX Accessories][261]
* [ All ][262]
* [Keyboard PCB][263]
* [ TKL PCB ][264]
* [Keyboard Wrist Rest][265]
* [ All ][266]
* [ XIYAN DESIGN ][267]
* [ Unikeys Black Walnut Wrist Rest ][268]
* [Deskmat][269]
* [ All ][270]
* [80 Retros ][271]
* [Keyboard Trinkets ][272]
1 / 1
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
* … (55 chars truncated)
… (805 lines truncated)
<truncation_notice>
Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/00ddff57/content.txt
</truncation_notice>Content truncated; maybe search within page for "Batch" or "Price". But webfetch output too huge. Let's search with grep? But no direct grep on web. Could download? Let's use web_search with more specific "Neo80 Cu batch 1 global pre-order" maybe UniKeys product url for batch 1.
{
"query": "site:unikeyboards.com \"neo80-cu\" \"batch-1\" OR \"batch 1\""
}# Web Search Results for "site:unikeyboards.com "neo80-cu" "batch-1" OR "batch 1"" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Layout: WK/WKL ## 2. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/en-ie/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Layout: WK/WKL ## 3. 80% Keyboard – UniKeys URL: https://unikeyboards.com/collections/80-keyboard ### Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... From $154.99 USD ## 4. Qwertykeys: High-Quality Mechanical Keyboard Components and Accessories | Unikeys – Page 2 – UniKeys URL: https://unikeyboards.com/collections/qwertykeys?page=2 ### Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... From $154.99 USD ## 5. 80% Keyboard – UniKeys URL: https://unikeyboards.com/en-jp/collections/80-keyboard ### Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... From ¥24,684 JPY
No batch 1 listed. Maybe Neo80 Cu first batch was indeed Jan 2025, and earlier in 2024 was Neo80 (non-Cu). User might be conflating Neo80 release May 2024 with Cu version? But they said Neo80 Cu. Need clarify but support with facts. Let's check historical info via keeb-finder price history, maybe release date.
{
"url": "https://keeb-finder.com/keyboards/neo80-tkl-iso-ansi-aluminium-keyboard-kit-in-stock-extras"
}# Web Content from https://keeb-finder.com/keyboards/neo80-tkl-iso-ansi-aluminium-keyboard-kit-in-stock-extras
[KeebFinder][1]
[Finder][2]
[Sales][3]
[Keyboards][4]
[Keycaps][5]
[Switches][6]
[Mice][7]
[More][8]
$
[
Not sure which keyboard to choose? Try the Keyboard Finder now!
][9]Feedback
1. [Home][10]
2. [keyboards][11]
3. neo80 tkl iso ansi aluminium keyboard kit in stock extras
[Qwertykeys Neo80 Cu Keyboard]
[Qwertykeys Neo80 Cu Keyboard - Image: 5]
[Qwertykeys Neo80 Cu Keyboard - Image: 9]
[Qwertykeys Neo80 Cu Keyboard - Image: 17]
[
72
][12]
Overall/ Value
72.2
Build Quality
85.1
Customizability
55.2
Performance
60.6
Productivity
61.9
Portability
71.8
[[Qwertykeys Neo80 Cu Keyboard]][13]
# Qwertykeys Neo80 Mechanical Keyboard
[
5.0 stars (8 reviews)
][14]
[
Details
][15][
Specification
][16][
Price alert
][17][
Compare price
][18][
Price history
][19][
FAQ
][20]
The Qwertykeys Neo80 ISOANSI is a customizable 80% TKL mechanical keyboard kit suited for hobbyists
who want to build a versatile keyboard with both ISO and ANSI layouts. It fits users who value
wireless and wired connectivity options, modular mounting styles, and a screwless assembly process.
This board requires separate purchase of switches and keycaps, making it ideal for those comfortable
with keyboard assembly and customization.</p... [Read more][21]
Compare prices from $173.00 to $209 · Popularity rank 101 in [Keyboards][22]
[
Qwertykeys
][23][
80% Profile
][24][
Aluminum Case
][25][
Gasket Mount
][26][
Under $200
][27][
USB-C
][28][
N-Key Rollover
][29][
Keyboard Kit
][30][
ANSI layout
][31][
Red Case
][32]
[
Details
][33][
Specification
][34][
Price alert
][35][
Compare price
][36][
Price history
][37][
FAQ
][38]
## Compare prices and purchase options
Click the coupon code for a discount. Features and specs may vary by model version.
Qwertykeys Neo80
[
[Amazon]
Amazon
Global
Visit shop
][39]
-
Qwertykeys Neo80 Cu Keyboard
[
[Divinikey]
Divinikey
Based in US
$173
][40]
-5% Code: KEEBFINDER
Copy
───────────┬───────────┬───────────────────┬────────────┬────────────┬───────────────
Vendor │Location │Coupon Code │In Stock │Price (USD) │Link*
───────────┴───────────┴───────────────────┴────────────┴────────────┴───────────────
Qwertykeys Neo80
───────────┬───────────┬───────────────────┬────────────┬────────────┬───────────────
[Amazon] │Global │- │Check vendor│Check vendor│[
│ │ │ │ │Visit shop
│ │ │ │ │][41]
───────────┴───────────┴───────────────────┴────────────┴────────────┴───────────────
Qwertykeys Neo80 Cu Keyboard
───────────┬───────────┬───────────────────┬────────────┬────────────┬───────────────
[Divinikey]│Based in US│-5% Code: │ │$173 │[
│ │KEEBFINDER │ │ │Visit Shop
│ │ │ │ │][42]
───────────┴───────────┴───────────────────┴────────────┴────────────┴───────────────
*I may earn a commission if you purchase through these links. Thanks for your support!
## Price history
The price history chart tracks the lowest price over time across all stores, excluding Amazon
(shipping costs not included).
Setup Price Alert
1 month
3 months
All
## Compare Qwertykeys Neo80 vs Keychron Q1 HE vs Nuphy Gem80 Specification
Compare similar keyboards side by side, or use the [comparison table][43] to compare all keyboards!
───┬─────────────────────────┬───────────────────────────────────────────┬──────────────────────────
Mod│Qwertykeys Neo80 │Keychron Q1 HE │Nuphy Gem80
el │ │ │
───┼─────────────────────────┼───────────────────────────────────────────┼──────────────────────────
│[ │[ │[
│72 │100 │96
│][44] │][46] │][48]
│Overall/ Value │Overall/ Value │Overall/ Value
│72.2 │100.0 │96.1
│Build Quality │Build Quality │Build Quality
│85.1 │90.0 │86.9
│Customizability │Customizability │Customizability
│55.2 │99.4 │97.2
│Performance │Performance │Performance
│60.6 │100.0 │79.7
│Productivity │Productivity │Productivity
│61.9 │96.8 │93.6
│Portability │Portability │Portability
│71.8 │80.9 │75.7
│[[Qwertykeys Neo80 Cu │[[Keychron Q1 HE QMK Wireless Custom │[[Nuphy GEM80 Barebones
│Keyboard]][45] │Keyboard ISO Layout Collection]][47] │Keyboard Kit]][49]
───┼─────────────────────────┼───────────────────────────────────────────┼──────────────────────────
Rat│5.0 stars (8 reviews) │4.0 stars (34 reviews) │0.0 stars (0 reviews)
ing│ │ │
───┼─────────────────────────┼───────────────────────────────────────────┼──────────────────────────
Pur│Buy on Divinikey │Buy on Input Gear │Buy on Nuphy
cha│[Divinikey] │[Input Gear] │[Nuphy]
se │$173 │$160 │$170
Opt│ │ │
ion│ │ │
s │ │ │
───┼─────────────────────────┼───────────────────────────────────────────┼──────────────────────────
Mai│* Released in 2025 │* Released in 2023 │* Released in 2024
n │* Built with the ANSI │* Has Magnetic, Linear, Tactile, Clicky │* Has Mechanical switch
dif│ layout standard │ switch options │ options
fer│* Supports Bluetooth, 2.4│* Available in a 75% layout │* Built with the ANSI,
enc│ GHz, Wired, Wireless │* Built with the ISO, ISO-UK, ISO-Nordic, │ ISO-DE, ISO layout
es │ connectivity │ ISO-SW, ISO-ES, ISO-FR, ISO-IT, ISO-DE, │ standard
│* Equipped with a 4400 │ ANSI, JIS layout standard │* Weighs about 1120 g
│ mAh ba… (92 chars truncated)
… (860 lines truncated)
<truncation_notice>
Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/a5044163/content.txt
</truncation_notice>KeebFinder says "Released in 2025". So Neo80 Cu likely released 2025. But user swears released before that. Maybe they mean Neo80 (non-Cu) which released May 2024 for £85. Need clarify distinction. Let's search for "Neo80 Cu" official announcement date Qwertykeys discord maybe.
{
"query": "\"Neo80 Cu\" \"Qwertykeys\" announcement \"2024\" \"Discord\" \"release\""
}# Web Search Results for ""Neo80 Cu" "Qwertykeys" announcement "2024" "Discord" "release"" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... Fulfillment Status: ... Visit Discord to view fulfillment status ... ### Neo80 Cu ... ## Neo80 Cu ## 2. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard Qwertykeys Neo80 Cu Keyboard – Divinikey ... Join our Divinikey Community Discord! ... # Qwertykeys Neo80 Cu Keyboard ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Qwertykeys Neo80 Cu Keyboard Features ... ## Neo80 Cu ## 3. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... - JOIN OUR DISCORD COMMUNITY! - For UK Customers: $10 USD (VAT not included) flat rate shipping for order value under $155 USD ... Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... The Neo80 Cu is built around the beloved 80% layout, a proven favourite among professionals and enthusiasts who prioritise efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... 0% layout, we' ... maintained the Cu series' signature all-copper ... kg when fully assembled. ... We've integrated ... on Gasket structure into the Neo80 Cu. Unlike ... on Gaskets that require ... , we' ... to securely hold ... . This innovation allows for hassle ... and ensures exceptional ... time. Of course, we've also ... as an alternative option for ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ## 5. Neo80Cu – ktechs URL: https://ktechs.store/products/neo80cu Neo80Cu – ktechs Skip to content ... Join our Discord community! ... # Neo80Cu ... Neo80 Cu is built around the beloved 80% layout, a ... . This layout offers ... Neo80Cu ... Groupbuy Details ... Group Buy: The current pre-order ends 31st January 2026Fulfilment: 3 months after end of pre-order(Please note that fulfilment may be delayed due to manufacturing, dates and timeline reflected are an estimate.) ... Neo80Cu ... ### New Color in Real Shots ... Not only are we bringing back the fan-favoriteTeal from the Neo series, but we’re also introducing a stunning lineup offresh colors— Slate Blue, Taupe Grey, Dusty Rose, Jade, and Ruby Rose, giving you even more ways to make your keyboard truly yours.
Maybe the user is referring to the regular Neo80 released May 2024. Need address directly: I can't find evidence Neo80 Cu released before 2025. The original Neo80 (aluminum) launched May 2024 for ~£85/$100. The Cu version came later, first batch likely Jan 2025. But I should not dismiss. Need verify if there is an earlier batch. Search with terms like "Neo80 Cu in stock extras" "first batch shipped".
{
"query": "\"Neo80 Cu\" \"first batch\" \"shipped\" \"2024\""
}# Web Search Results for ""Neo80 Cu" "first batch" "shipped" "2024"" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 2. (Pre Order) Neo80 Keyboard Kit June 24 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-june-24 Expected to ship Q3-Q4 2024 ... Pre-Order Open June 17th - June 25th 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ## 3. (Pre Order) Neo80 Keyboard Kit May 24 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-may-24 Expected to ship Q3-Q4 2024 ... Pre-Order Open May 22nd - June 3rd 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... UPDATE for May 24 Pre-Order ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ## 4. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu ... Neo80 Cu ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... orders and ship them to the ... Fulfillment Status: ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ... ### Neo80 Cu ... ## Neo80 Cu ## 5. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/en-ie/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
All results point to Neo80 Cu first batch Jan 2025. However the user could be thinking of Neo80 (non-Cu) May/June 2024. Need to be direct and honest: "I can't find evidence the Cu variant released before Jan 2025. The regular Neo80 released May 2024." But maybe there's a "Neo80 Cu" Batch 1 around Sept/Oct 2024. Let's search with "neo80 cu" on Deskhero or other vendor with date.
{
"query": "\"Neo80 Cu\" \"pre-order\" \"September\" OR \"October\" \"2024\""
}# Web Search Results for ""Neo80 Cu" "pre-order" "September" OR "October" "2024"" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... Canada: Unikeys, Keybay and deskhero.ca(Oct 10th)Indonesia: Mechaland (same day or a day later as QK)Korea&Japan: SwagkeysMalaysia and Brunei: Rebult and Mecha (same day or a day later as QK)Oceania (Australia, New Zealand and etc): KeebzNCables, BerserKeys and Gara Studio (same day or a day later as QK), QK AustraliaSingapore and Pakistan: Qwertyqop, Ktechs, Pantheonkeys (same day or a day later as QK)Taiwan: InpadThailand, Laos, and Myanmar: Keypro and Aiglatson Studio(same day or a day later as QK)Vietnam: MOKB(same day or a day later as QK)Europe: Monacokeys, Coffeekeys, Eloquent, Delta and Keygem(same day or a day later as QK)UK: Prototypist ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ## 2. (Pre Order) Neo80 Keyboard Kit September 24 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-september-24 (Pre Order) Neo80 Keyboard Kit September 24 ... # (Pre Order) Neo80 Keyboard Kit September 24 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in ... product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... Expected to ship Q1 2025 ... Pre-Order Ends September 29th 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q1 2025 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. If your extra cost items are not billed at checkout you will receive an invoice for them once the pre-order window closes. Only the items specified in each product picture are included with that particular product. ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately... ## 3. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular... ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Item is in stock Only 0 left in stock Item is out of stock Item is unavailable ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ## 5. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025
Interesting result: Qwertykeys page says "Canada: Unikeys, Keybay and deskhero.ca (Oct 10th)" without year; could be Oct 10 2024? But it also says Neo Cu price adjustment July 1st. That Oct 10 likely 2024? Wait the page currently shows price adjustment July 1st (current/future) and regional vendors with Oct 10th (maybe launch date?). Let's parse context. On Qwertykeys product page, under "Regional Vendors" it lists vendors and "(Oct 10th)" after deskhero.ca. That could refer to a release date for Canada (Oct 10, possibly 2024). But which year? Price adjustment July 1st (maybe 2025? current date July 2026? Today is July 2026, but price adjustment could have been 2025 or 2026). The page current price $259.99, and says price adjustment July 1st; if today is July 2026, maybe it refers to July 1, 2026. Let's examine with Wayback? Could use web archive? We don't have tool, but maybe search cached. Let's search for "Neo80 Cu October 10 2024".
{
"query": "\"Neo80 Cu\" \"October 10\" OR \"Oct 10\" 2024"
}# Web Search Results for ""Neo80 Cu" "October 10" OR "Oct 10" 2024" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... Canada: Unikeys, Keybay and deskhero.ca(Oct 10th)Indonesia: Mechaland (same day or a day later as QK)Korea&Japan: SwagkeysMalaysia and Brunei: Rebult and Mecha (same day or a day later as QK)Oceania (Australia, New Zealand and etc): KeebzNCables, BerserKeys and Gara Studio (same day or a day later as QK), QK AustraliaSingapore and Pakistan: Qwertyqop, Ktechs, Pantheonkeys (same day or a day later as QK)Taiwan: InpadThailand, Laos, and Myanmar: Keypro and Aiglatson Studio(same day or a day later as QK)Vietnam: MOKB(same day or a day later as QK)Europe: Monacokeys, Coffeekeys, Eloquent, Delta and Keygem(same day or a day later as QK)UK: Prototypist ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ... ## Neo80 Cu ... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... s signature all-copper ... weight to approximately 4.5 kg when ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ## 2. [GB] Neo80 CU by Qwertykeys – pantheonkeys URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys [GB] Neo80 CU by Qwertykeys – pantheonkeys ... ## [GB] Neo80 CU by Qwertykeys ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026 ## 3. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ... - Weight: Around ... kg after assembly ... WK/W ... - Size:80 ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Add to Cart • $195.00 ... The Neo80 Cu is built around the beloved 80% layout, a proven favourite among professionals and enthusiasts who prioritise efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... large 8 ... layout, we've maintained the Cu series' signature all-copper bottom design, bringing the keyboard ... s total weight to approximately 4.5 kg when fully assembled. ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ## 5. [In Stock] Qwertykeys NEO80 Cu URL: https://swagkeys.com/products/gb-qwertykeys-neo80-cu [In Stock] Qwertykeys NEO80 Cu ... # [In Stock] Qwertykeys NEO80 Cu ... $264.00 ... The Neo80 Cu is built in the 80% layout, which is the most popular layout after 108%.With a compact design and practical functionality, it is a perfect choice for users looking to upgrade their workspace or for those seeking a main keyboard suitable for everyday use. ... The highlight of the Neo80 Cu is its copper bottom.It offers a luxurious appearance, impressive weight, and a crisp, clear typing sound—making it the defining feature of this keyboard. ... With the copper bottom plate and stainless steel weight, the Neo80 Cu weighs an impressive ~4.5 kg.This substantial weight minimizes vibrations and delivers a deep, clean typing sound. ... The Neo80 Cu bottom plate features a resonance- ... izing structure with multiple internal sections, reducing echo and noise.Forcebreak pads are applied at all contact points between the top and bottom plates to eliminate ping noise and significantly reduce vibrations.Combined with the copper bottom plate, the Cu series produces a deep, clear typing sound without additional dampening materials. ... Incline: 8˚ Overall Height: 18 mm Size: 355.5 mm × 134 mm Layout: 80% WK/WKL Weight: Approximately 4.5 kg after assembly
Qwertykeys page "Canada: ... deskhero.ca(Oct 10th)" could be the global release date Oct 10 (year not listed). Could be Oct 10, 2024? Let's search "deskhero Neo80 Cu Oct 10"
{
"query": "site:deskhero.ca \"Neo80 Cu\" \"Oct\" OR \"October\" \"2024\""
}# Web Search Results for "site:deskhero.ca "Neo80 Cu" "Oct" OR "October" "2024"" ## 1. Neo80 Cu Copper Bottom WK Keyboard URL: https://www.deskhero.ca/products/neo80-cu-keyboard Neo80 Cu Copper Bottom WK Keyboard ... # Neo80 Cu Copper Bottom WK Keyboard ... mode ANSI H ... ## Neo 80 Cu — The Fusion of Elegance, Acoustics, and Performance ... Experience the Neo 80 Cu, a premium 80% mechanical keyboard that blends precision engineering with luxury design. Featuring a solid copper base, tri-mode connectivity (USB-C, Bluetooth, 2.4 GHz), and customizable mounting systems for tailored acoustics, the Neo 80 Cu redefines what a compact keyboard can be. Built with aerospace-grade materials, VIA/QMK programmability, and a signature “floating planet” aesthetic, it’s a statement piece that delivers both form and function for discerning creators, gamers, and enthusiasts alike. ... ## Full Copper & Brass Bottom ... Despite its large 80% layout, we've maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Neo keyboards, the bottom case features a partitioned acoustic ... to minimize hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without any foam. ... , whose gravity ... surrounding space, the Neo80 Cu ... creating a striking " ... We've integrated ... Poron Gasket ... into the Neo80 Cu. Unlike ... Poron G ... case, we've designed special grooves ... case to securely hold the Poron G ... . This innovation allows for hassle-free replacement and ensures exceptional durability over time. Of course, we've also retained the silicone gasket mount structure as an alternative option for those who prefer it ... ## Product specification ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ... Tri-mode ANSI Hotswap PCB (Non-flex Cut) ... - 1.6mm thick - Support USB-C, Bluetooth, and 2.4GHz connection - Support only ANSI layout - NKRO - Polling r... ## 2. Group Buy Keyboard Updates URL: https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504 | Neo75 Keyboard | Estimated shipping end of Q1, 2026 | | Neo80 Cu Keyboard Batch 2 | Shipping complete. | | Neo98 Keyboard | Estimated shipping end of Q1, 2026 | ## 3. Qwertykeys Keyboards URL: https://www.deskhero.ca/collections/qwertykeys-keyboards Neo80 Cu Copper Bottom WK Keyboard ... $304.00 USD ## 4. Neo60 Cu Keyboard URL: https://www.deskhero.ca/products/neo60-cu-keyboard-1 Neo60 Cu Keyboard ... # Neo60 Cu Keyboard ... # Neo60 Cu Keyboard ... While developing the Neo60 in our Core Series, we've also been working on twin compact keyboards with copper bottoms. Following our product line strategy, these Cu series keyboards maintain their focus on copper bottom cases and extensive curved designs. Since 65% and 60% layouts share similar dimensions, we've created a unified design and are launching both sizes together—letting the community choose their preferred layout without compromise. If you are looking for a compact keyboard that looks, feels, and sounds great, then these twin keyboards are not to be missed. ... The Neo65 Cu and Neo60 Cu feature the same bezel proportions and rounded corners as the previous Neo65, with an ultra-slim side bezel that seamlessly complements any desk setup and theme. ... In line with the Cu series theme, we've expanded our color palette to include more vibrant options. These include the highly requested Teal color alongside fan favorites from our previous releases. The combination of the vivid top case with the copper bottom creates a striking, dynamic aesthetic. ... We've also introduced a more layered waistline design that harmonizes beautifully with the copper bottom to enhance the design language of the Cu series. The curved bottom case softens the visual weight of the copper, creating a sleeker and more slender front profile. ... To minimize hollowness, we ... Neo60 Cu ... strategic cutouts that maximize filling ... and bottom case while maintaining sufficient space for ... . This design, combined ... , significantly reduces hollow ... The Neo65 & 60 Cu supports both PCB gasket mount (carried over from the Neo65) and isolated top mount. In previous designs, our ball-catch structure prevented top mount implementation since the plate/PCB screw holes would conflict with ball-catch components. The Neo65 & 60 Cu's new structure eliminates this limitation, making top mount possible this time. ... ## Specfiica... ## 5. Neo65 Cu Keyboard - Brass Bottom URL: https://www.deskhero.ca/products/neo65-cu-keyboard-brass-bottom Neo65 Cu Keyboard - Brass Bottom ... # Neo65 Cu Keyboard - Brass Bottom ... # Neo65 Cu Keyboard ... While developing the Neo60 in our Core Series, we've also been working on twin compact keyboards with copper bottoms. Following our product line strategy, these Cu series keyboards maintain their focus on copper bottom cases and extensive curved designs. Since 65% and 60% layouts share similar dimensions, we've created a unified design and are launching both sizes together—letting the community choose their preferred layout without compromise. If you are looking for a compact keyboard that looks, feels, and sounds great, then these twin keyboards are not to be missed. ... ## Appearance Design ... The Neo65 Cu and Neo60 Cu feature the same bezel proportions and rounded corners as the previous Neo65, with an ultra-slim side bezel that seamlessly complements any desk setup and theme. ... In line with the Cu series theme, we've expanded our color palette to include more vibrant options. These include the highly requested Teal color alongside fan favorites from our previous releases. The combination of the vivid top case with the copper bottom creates a striking, dynamic aesthetic. ... We've also introduced a more layered waistline design that harmonizes beautifully with the copper bottom to enhance the design language of the Cu series. The curved bottom case softens the visual weight of the copper, creating a sleeker and more slender front profile. ... To minimize hollowness, we've designed a sophisticated acoustic chamber for both Neo65 Cu and Neo60 Cu. The bottom case features strategic cutouts that maximize filling between the PCB and bottom case while maintaining sufficient space for typing movement. This design, combined with the material properties of the bottom case, significantly reduces hollow sound without requiring foam fillers. ... ## Dual-Mounting System ... The Neo65 & 60 Cu supports both PCB gasket mount (carried over from the Neo65) and isolated top mount....
Deskhero product page current. Need find original release date. Maybe Deskhero page has hidden metadata? Let's webfetch it.
{
"url": "https://www.deskhero.ca/products/neo80-cu-keyboard"
}# Web Content from https://www.deskhero.ca/products/neo80-cu-keyboard
[Skip to content][1]
[Canada Post International Shipping Suspension Notice][2]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][3]
[FREE SHIPPING on most orders $100+ (exclusions apply)][4]
[GMK Hi Viz R2 Keycaps Shipping in Progress][5]
[Canada Post International Shipping Suspension Notice][6]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][7]
[FREE SHIPPING on most orders $100+ (exclusions apply)][8]
[GMK Hi Viz R2 Keycaps Shipping in Progress][9]
[Canada Post International Shipping Suspension Notice][10]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][11]
[FREE SHIPPING on most orders $100+ (exclusions apply)][12]
[GMK Hi Viz R2 Keycaps Shipping in Progress][13]
[Canada Post International Shipping Suspension Notice][14]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][15]
[FREE SHIPPING on most orders $100+ (exclusions apply)][16]
[GMK Hi Viz R2 Keycaps Shipping in Progress][17]
[Canada Post International Shipping Suspension Notice][18]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][19]
[FREE SHIPPING on most orders $100+ (exclusions apply)][20]
[GMK Hi Viz R2 Keycaps Shipping in Progress][21]
[Canada Post International Shipping Suspension Notice][22]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][23]
[FREE SHIPPING on most orders $100+ (exclusions apply)][24]
[GMK Hi Viz R2 Keycaps Shipping in Progress][25]
[Canada Post International Shipping Suspension Notice][26]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][27]
[FREE SHIPPING on most orders $100+ (exclusions apply)][28]
[GMK Hi Viz R2 Keycaps Shipping in Progress][29]
[Canada Post International Shipping Suspension Notice][30]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][31]
[FREE SHIPPING on most orders $100+ (exclusions apply)][32]
[GMK Hi Viz R2 Keycaps Shipping in Progress][33]
[Canada Post International Shipping Suspension Notice][34]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][35]
[FREE SHIPPING on most orders $100+ (exclusions apply)][36]
[GMK Hi Viz R2 Keycaps Shipping in Progress][37]
[Canada Post International Shipping Suspension Notice][38]
[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][39]
[FREE SHIPPING on most orders $100+ (exclusions apply)][40]
[GMK Hi Viz R2 Keycaps Shipping in Progress][41]
Menu [ Search][42]
* Shop
* [ Keycaps ][43]
* [ GMK ][44]
* [ KAM ][45]
* [ KAT ][46]
* [ KBDFans ePBT ][47]
* [ Milkyway ][48]
* [ NicePBT ][49]
* [ Novelkeys ][50]
* [ Omnitype ][51]
* [ Signature Plastics ][52]
* [ Keyboards ][53]
* [ Full Size ][54]
* [ 60% ][55]
* [ 65% ][56]
* [ 75% ][57]
* [ TKL ][58]
* [ Ergo ][59]
* [ Qwertykeys | Neo Labs ][60]
* [ Omnitype ][61]
* [ Keychron ][62]
* [ Meletrix ][63]
* [ MCHOSE ][64]
* [ SMITH+RUNE ][65]
* [ MODE ][66]
* [ Ducky ][67]
* [ Varmilo ][68]
* [ Cannonkeys ][69]
* [ Novelkeys ][70]
* [ Mice ][71]
* [ Accessories ][72]
* [ ATK/VXE/VGN ][73]
* [ Endgame Gear ][74]
* [ Finalmouse ][75]
* [ Hitscan ][76]
* [ IPI ][77]
* [ LAMZU ][78]
* [ Madlions ][79]
* [ MCHOSE ][80]
* [ RAWM ][81]
* [ Scyrox ][82]
* [ Teevolution ][83]
* [ Waizowl ][84]
* [ WLMouse ][85]
* [ Switches ][86]
* [ All Switches & Accessories ][87]
* [ Linear ][88]
* [ Tactile ][89]
* [ Magnetic Hall Effect ][90]
* [ Electro Capacitive ][91]
* [ Accessories ][92]
* [ Gaming ][93]
* [ Gamepads/Controllers ][94]
* [ Handheld Consoles ][95]
* [ Audio ][96]
* [ JDS Labs ][97]
* [ Deskmats ][98]
* [ Monitors ][99]
* [ Koorui ][100]
* [Mouse Compare Tool 1.2][101]
* [New Arrivals][102]
* Group Buys
* [ Currently Running ][103]
* [ Group Buy Updates ][104]
* [ Pre-orders ][105]
* [ Closed ][106]
* [ In Stock Extras ][107]
* [Help Desk][108]
[Deskhero.ca Inc. ][109]
* CAD $
Country
Afghanistan (USD $) Åland Islands (USD $) Albania (USD $) Algeria (USD $) Andorra (USD $) Angola
(USD $) Anguilla (USD $) Antigua & Barbuda (USD $) Argentina (USD $) Armenia (USD $) Aruba (USD $)
Ascension Island (USD $) Australia (USD $) Austria (USD $) Azerbaijan (USD $) Bahamas (USD $)
Bahrain (USD $) Bangladesh (USD $) Barbados (USD $) Belarus (USD $) Belgium (USD $) Belize (USD $)
Benin (USD $) Bermuda (USD $) Bhutan (USD $) Bolivia (USD $) Bosnia & Herzegovina (USD $) Botswana
(USD $) Brazil (USD $) British Indian Ocean Territory (USD $) British Virgin Islands (USD $)
Brunei (USD $) Bulgaria (USD $) Burkina Faso (USD $) Burundi (USD $) Cambodia (USD $) Cameroon
(USD $) Canada (CAD $) Cape Verde (USD $) Caribbean Netherlands (USD $) Cayman Islands (USD $)
Central African Republic (USD $) Chad (USD $) Chile (USD $) China (USD $) Christmas Island (USD $)
Cocos (Keeling) Islands (USD $) Colombia (USD $) Comoros (USD $) Congo - Brazzaville (USD $) Congo
- Kinshasa (USD $) Cook Islands (USD $) Costa Rica (USD $) Côte d’Ivoire (USD $) Croatia (USD $)
Curaçao (USD $) Cyprus (USD $) Czechia (USD $) Denmark (USD $) Djibouti (USD $) Dominica (USD $)
Dominican Republic (USD $) Ecuador (USD $) Egypt (USD $) El Salvador (USD $) Equatorial Guinea
(USD $) Eritrea (USD $) Estonia (USD $) Eswatini (USD $) Ethiopia (USD $) Falkland Islands (USD $)
Faroe Islands (USD $) Fiji (USD $) Finland (USD $) France (USD $) French Guiana (USD $) French
Polynesia (USD $) French Southern Territories (USD $) Gabon (USD $) Gambia (USD $) Georgia (USD $)
Germany (USD $) Ghana (USD $) Gibraltar (USD $) Greece (USD $) Greenland (USD $) Grenada (USD $)
Guadeloupe (USD $) Guatemala (USD $) Guernsey (USD $) Guinea (USD $) Guinea-Bissau (USD $) Guyana
(USD $) Haiti (USD $) Honduras (USD $) Hong Kong SAR (USD $) Hungary (USD $) Iceland (USD $) India
(USD $) Indonesia (USD $) Iraq (USD $) Ireland (USD $) Isle of Man (USD $) Israel (USD $) Italy
(USD $) Jamaica (USD $) Japan (USD $) Jersey (USD $) Jordan (USD $) Kazakhstan (USD $) Kenya (USD
$) Kiribati (USD $) Kosovo (USD $) Kuwait (USD $) Kyrgyzstan (USD $) Laos (USD $) Latvia (USD $)
Lebanon (USD $) Lesotho (USD $) Liberia (USD $) Libya (USD $) Liechtenstein (USD $) Lithuania (USD
$) Luxembourg (USD $) Macao SAR (USD $) Madagascar (USD $) Malawi (USD $) Malaysia (USD $)
Maldives (USD $) Mali (USD $) Malta (USD $) Martinique (USD $) Mauritania (USD $) Mauritius (USD
$) Mayotte (USD $) Mexico (USD $) Moldova (USD $) Monaco (USD $) Mongolia (USD $) Montenegro (USD
$) Montserrat (USD $) Morocco (USD $) Mozambique (USD $) Myanmar (Burma) (USD $) Namibia (USD $)
Nauru (USD $) Nepal (USD $) Netherlands (USD $) New Caledonia (USD $) New Zealand (USD $)
Nicaragua (USD $) Niger (USD $) Nigeria (USD $) Niue (USD $) Norfolk Island (USD $) North
Macedonia (USD $) Norway (USD $) Oman (USD $) Pakistan (USD $) Palestinian Territories (USD $)
Panama (USD $) Papua New Guinea (USD $) Paraguay (USD $) Peru (USD $) Philippines (USD $) Pitcairn
Islands (USD $) Poland (USD $) Portugal (USD $) Qatar (USD $) Réunion (USD $) Romania (USD $)
Russia (USD $) Rwanda (USD $) Samoa (USD $) San Marino (USD $) São Tomé & Príncipe (USD $) Saudi
Arabia (USD $) Senegal (USD $) Serbia (USD $) Seychelles (USD $) Sierra Leone (USD $) Singapore
(USD $) Sint Maarten (USD $) Slovakia (USD $) Slovenia (USD $) Solomon Islands (USD $) Somalia
(USD $) South Africa (USD $) South Georgia & South Sandwich Islands (USD $) South Korea (USD $)
South Sudan (USD $) Spain (USD $) Sri Lanka (USD $) St. Barthélemy (USD $) St. Helena (USD $) St.
Kitts & Nevis (USD $) St. Lucia (USD $) St. Martin (USD $) St. Pierre & Miquelon (USD $) St.
Vincent & Grenadines (USD $) Sudan (USD $) Suriname (USD $) Svalbard & Jan Mayen (USD $) Sweden
(USD $) Switzerland (USD $) Taiwan (USD $) Tajikistan (USD $) Tanzania (USD $) Thailand (USD $)
Timor-Leste (USD $) Togo (USD $) Tokelau (USD $) Tonga (USD $) Trinidad & Tobago (USD $) Tristan
da Cunha (USD $) Tunisia (USD $) Türkiye (USD $) Turkmenistan (USD $) Turks & Caicos Islands (USD
$) Tuvalu (USD $) U.S. Outlying Islands (USD $) Uganda (USD $) Ukraine (USD $) United Arab
Emirates (USD $) United Kingdom (USD $) United States (USD $) Uruguay (USD $) Uzbekistan (USD $)
Vanuatu (USD $) Vatican City (USD $) Venezuela (USD $) Vietnam (USD $) Wallis & Futuna (USD $)
Western Sahara (USD $) Yemen (USD $) Zambia (USD $) Zimbabwe (USD $)
* [ Search][110]
* Try our new light/dark theme!
Close
* [ Login][111]
* [ Cart
0 items 0
][112]
* Shop
* [ Mouse Compare Tool 1.2 ][113]
* [ New Arrivals ][114]
* Group Buys
* [ Help Desk ][115]
CAD $
Country
Afghanistan (USD $) Åland Islands (USD $) Albania (USD $) Algeria (USD $) Andorra (USD $) Angola
(USD $) Anguilla (USD $) Antigua & Barbuda (USD $) Argentina (USD $) Armenia (USD $) Aruba (USD $)
Ascension Island (USD $) Australia (USD $) Austria (USD $) Azerbaijan (USD $) Bahamas (USD $)
Bahrain (USD $) Bangladesh (USD $) Barbados (USD $) Belarus (USD $) Belgium (USD $) Belize (USD $)
Benin (USD $) Bermuda (USD $) Bhutan (USD $) Bolivia (USD $) Bosnia & Herzegovina (USD $) Botswana
(USD $) Brazil (USD $) British Indian Ocean Territory (USD $) British Virgin Islands (USD $) Brunei
(USD $) Bulgaria (USD $) Burkina Faso (USD $) Burundi (USD $) Cambodia (USD $) Cameroon (USD $)
Canada (CAD $) Cape Verde (USD $) Caribbean Netherlands (USD $) Cayman Islands (USD $) Central
African Republic (USD $) Chad (USD $) Chile (USD $) China (USD $) Christmas Island (USD $) Cocos
(Keeling) Islands (USD $) Colombia (USD $) Comoros (USD $) Congo - Brazzaville (USD $) Congo -
Kinshasa (USD $) Cook Islands (USD $) Costa Rica (USD $) Côte d’Ivoire (USD $) Croatia (USD $)
Curaçao (USD $) Cyprus (USD $) Czechia (USD $) Denmark (USD $) Djibouti (USD $) Dominica (USD … (2 chars truncated)
… (811 lines truncated)
<truncation_notice>
Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/0a9318bc/content.txt
</truncation_notice>Output too long. Need maybe fetch less or search for date. But tool returns full page. Could use grep in overflow file? Since file accessible? But no file read? We can read the overflow file via read. Let's read it and search for date/price.
{
"file_path": "/var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/0a9318bc/content.txt",
"limit": 200
}<file-view path="/var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/0a9318bc/content.txt" start_line="1" end_line="200" total_lines="1044"> 1|# Web Content from https://www.deskhero.ca/products/neo80-cu-keyboard 2| 3|[Skip to content][1] 4| 5|[Canada Post International Shipping Suspension Notice][2] 6| 7|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][3] 8| 9|[FREE SHIPPING on most orders $100+ (exclusions apply)][4] 10| 11|[GMK Hi Viz R2 Keycaps Shipping in Progress][5] 12| 13|[Canada Post International Shipping Suspension Notice][6] 14| 15|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][7] 16| 17|[FREE SHIPPING on most orders $100+ (exclusions apply)][8] 18| 19|[GMK Hi Viz R2 Keycaps Shipping in Progress][9] 20| 21|[Canada Post International Shipping Suspension Notice][10] 22| 23|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][11] 24| 25|[FREE SHIPPING on most orders $100+ (exclusions apply)][12] 26| 27|[GMK Hi Viz R2 Keycaps Shipping in Progress][13] 28| 29|[Canada Post International Shipping Suspension Notice][14] 30| 31|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][15] 32| 33|[FREE SHIPPING on most orders $100+ (exclusions apply)][16] 34| 35|[GMK Hi Viz R2 Keycaps Shipping in Progress][17] 36| 37|[Canada Post International Shipping Suspension Notice][18] 38| 39|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][19] 40| 41|[FREE SHIPPING on most orders $100+ (exclusions apply)][20] 42| 43|[GMK Hi Viz R2 Keycaps Shipping in Progress][21] 44| 45|[Canada Post International Shipping Suspension Notice][22] 46| 47|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][23] 48| 49|[FREE SHIPPING on most orders $100+ (exclusions apply)][24] 50| 51|[GMK Hi Viz R2 Keycaps Shipping in Progress][25] 52| 53|[Canada Post International Shipping Suspension Notice][26] 54| 55|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][27] 56| 57|[FREE SHIPPING on most orders $100+ (exclusions apply)][28] 58| 59|[GMK Hi Viz R2 Keycaps Shipping in Progress][29] 60| 61|[Canada Post International Shipping Suspension Notice][30] 62| 63|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][31] 64| 65|[FREE SHIPPING on most orders $100+ (exclusions apply)][32] 66| 67|[GMK Hi Viz R2 Keycaps Shipping in Progress][33] 68| 69|[Canada Post International Shipping Suspension Notice][34] 70| 71|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][35] 72| 73|[FREE SHIPPING on most orders $100+ (exclusions apply)][36] 74| 75|[GMK Hi Viz R2 Keycaps Shipping in Progress][37] 76| 77|[Canada Post International Shipping Suspension Notice][38] 78| 79|[QK80 Mk2 Prebuilt Keyboard Preorders - Shipping in Progress][39] 80| 81|[FREE SHIPPING on most orders $100+ (exclusions apply)][40] 82| 83|[GMK Hi Viz R2 Keycaps Shipping in Progress][41] 84| 85|Menu [ Search][42] 86|* Shop 87| * [ Keycaps ][43] 88| * [ GMK ][44] 89| * [ KAM ][45] 90| * [ KAT ][46] 91| * [ KBDFans ePBT ][47] 92| * [ Milkyway ][48] 93| * [ NicePBT ][49] 94| * [ Novelkeys ][50] 95| * [ Omnitype ][51] 96| * [ Signature Plastics ][52] 97| * [ Keyboards ][53] 98| * [ Full Size ][54] 99| * [ 60% ][55] 100| * [ 65% ][56] 101| * [ 75% ][57] 102| * [ TKL ][58] 103| * [ Ergo ][59] 104| * [ Qwertykeys | Neo Labs ][60] 105| * [ Omnitype ][61] 106| * [ Keychron ][62] 107| * [ Meletrix ][63] 108| * [ MCHOSE ][64] 109| * [ SMITH+RUNE ][65] 110| * [ MODE ][66] 111| * [ Ducky ][67] 112| * [ Varmilo ][68] 113| * [ Cannonkeys ][69] 114| * [ Novelkeys ][70] 115| * [ Mice ][71] 116| * [ Accessories ][72] 117| * [ ATK/VXE/VGN ][73] 118| * [ Endgame Gear ][74] 119| * [ Finalmouse ][75] 120| * [ Hitscan ][76] 121| * [ IPI ][77] 122| * [ LAMZU ][78] 123| * [ Madlions ][79] 124| * [ MCHOSE ][80] 125| * [ RAWM ][81] 126| * [ Scyrox ][82] 127| * [ Teevolution ][83] 128| * [ Waizowl ][84] 129| * [ WLMouse ][85] 130| * [ Switches ][86] 131| * [ All Switches & Accessories ][87] 132| * [ Linear ][88] 133| * [ Tactile ][89] 134| * [ Magnetic Hall Effect ][90] 135| * [ Electro Capacitive ][91] 136| * [ Accessories ][92] 137| * [ Gaming ][93] 138| * [ Gamepads/Controllers ][94] 139| * [ Handheld Consoles ][95] 140| * [ Audio ][96] 141| * [ JDS Labs ][97] 142| * [ Deskmats ][98] 143| * [ Monitors ][99] 144| * [ Koorui ][100] 145|* [Mouse Compare Tool 1.2][101] 146|* [New Arrivals][102] 147|* Group Buys 148| * [ Currently Running ][103] 149| * [ Group Buy Updates ][104] 150| * [ Pre-orders ][105] 151| * [ Closed ][106] 152| * [ In Stock Extras ][107] 153|* [Help Desk][108] 154|[Deskhero.ca Inc. ][109] 155|* CAD $ 156| 157| Country 158| 159| Afghanistan (USD $) Åland Islands (USD $) Albania (USD $) Algeria (USD $) Andorra (USD $) Angola 160| (USD $) Anguilla (USD $) Antigua & Barbuda (USD $) Argentina (USD $) Armenia (USD $) Aruba (USD $) 161| Ascension Island (USD $) Australia (USD $) Austria (USD $) Azerbaijan (USD $) Bahamas (USD $) 162| Bahrain (USD $) Bangladesh (USD $) Barbados (USD $) Belarus (USD $) Belgium (USD $) Belize (USD $) 163| Benin (USD $) Bermuda (USD $) Bhutan (USD $) Bolivia (USD $) Bosnia & Herzegovina (USD $) Botswana 164| (USD $) Brazil (USD $) British Indian Ocean Territory (USD $) British Virgin Islands (USD $) 165| Brunei (USD $) Bulgaria (USD $) Burkina Faso (USD $) Burundi (USD $) Cambodia (USD $) Cameroon 166| (USD $) Canada (CAD $) Cape Verde (USD $) Caribbean Netherlands (USD $) Cayman Islands (USD $) 167| Central African Republic (USD $) Chad (USD $) Chile (USD $) China (USD $) Christmas Island (USD $) 168| Cocos (Keeling) Islands (USD $) Colombia (USD $) Comoros (USD $) Congo - Brazzaville (USD $) Congo 169| - Kinshasa (USD $) Cook Islands (USD $) Costa Rica (USD $) Côte d’Ivoire (USD $) Croatia (USD $) 170| Curaçao (USD $) Cyprus (USD $) Czechia (USD $) Denmark (USD $) Djibouti (USD $) Dominica (USD $) 171| Dominican Republic (USD $) Ecuador (USD $) Egypt (USD $) El Salvador (USD $) Equatorial Guinea 172| (USD $) Eritrea (USD $) Estonia (USD $) Eswatini (USD $) Ethiopia (USD $) Falkland Islands (USD $) 173| Faroe Islands (USD $) Fiji (USD $) Finland (USD $) France (USD $) French Guiana (USD $) French 174| Polynesia (USD $) French Southern Territories (USD $) Gabon (USD $) Gambia (USD $) Georgia (USD $) 175| Germany (USD $) Ghana (USD $) Gibraltar (USD $) Greece (USD $) Greenland (USD $) Grenada (USD $) 176| Guadeloupe (USD $) Guatemala (USD $) Guernsey (USD $) Guinea (USD $) Guinea-Bissau (USD $) Guyana 177| (USD $) Haiti (USD $) Honduras (USD $) Hong Kong SAR (USD $) Hungary (USD $) Iceland (USD $) India 178| (USD $) Indonesia (USD $) Iraq (USD $) Ireland (USD $) Isle of Man (USD $) Israel (USD $) Italy 179| (USD $) Jamaica (USD $) Japan (USD $) Jersey (USD $) Jordan (USD $) Kazakhstan (USD $) Kenya (USD 180| $) Kiribati (USD $) Kosovo (USD $) Kuwait (USD $) Kyrgyzstan (USD $) Laos (USD $) Latvia (USD $) 181| Lebanon (USD $) Lesotho (USD $) Liberia (USD $) Libya (USD $) Liechtenstein (USD $) Lithuania (USD 182| $) Luxembourg (USD $) Macao SAR (USD $) Madagascar (USD $) Malawi (USD $) Malaysia (USD $) 183| Maldives (USD $) Mali (USD $) Malta (USD $) Martinique (USD $) Mauritania (USD $) Mauritius (USD 184| $) Mayotte (USD $) Mexico (USD $) Moldova (USD $) Monaco (USD $) Mongolia (USD $) Montenegro (USD 185| $) Montserrat (USD $) Morocco (USD $) Mozambique (USD $) Myanmar (Burma) (USD $) Namibia (USD $) 186| Nauru (USD $) Nepal (USD $) Netherlands (USD $) New Caledonia (USD $) New Zealand (USD $) 187| Nicaragua (USD $) Niger (USD $) Nigeria (USD $) Niue (USD $) Norfolk Island (USD $) North 188| Macedonia (USD $) Norway (USD $) Oman (USD $) Pakistan (USD $) Palestinian Territories (USD $) 189| Panama (USD $) Papua New Guinea (USD $) Paraguay (USD $) Peru (USD $) Philippines (USD $) Pitcairn 190| Islands (USD $) Poland (USD $) Portugal (USD $) Qatar (USD $) Réunion (USD $) Romania (USD $) 191| Russia (USD $) Rwanda (USD $) Samoa (USD $) San Marino (USD $) São Tomé & Príncipe (USD $) Saudi 192| Arabia (USD $) Senegal (USD $) Serbia (USD $) Seychelles (USD $) Sierra Leone (USD $) Singapore 193| (USD $) Sint Maarten (USD $) Slovakia (USD $) Slovenia (USD $) Solomon Islands (USD $) Somalia 194| (USD $) South Africa (USD $) South Georgia & South Sandwich Islands (USD $) South Korea (USD $) 195| South Sudan (USD $) Spain (USD $) Sri Lanka (USD $) St. Barthélemy (USD $) St. Helena (USD $) St. 196| Kitts & Nevis (USD $) St. Lucia (USD $) St. Martin (USD $) St. Pierre & Miquelon (USD $) St. 197| Vincent & Grenadines (USD $) Sudan (USD $) Suriname (USD $) Svalbard & Jan Mayen (USD $) Sweden 198| (USD $) Switzerland (USD $) Taiwan (USD $) Tajikistan (USD $) Tanzania (USD $) Thailand (USD $) 199| Timor-Leste (USD $) Togo (USD $) Tokelau (USD $) Tonga (USD $) Trinidad & Tobago (USD $) Tristan 200| da Cunha (USD $) Tunisia (USD $) Türkiye (USD $) Turkmenistan (USD $) Turks & Caicos Islands (USD </file-view>
Not useful. Let's search for "Neo80 Cu" with date filter? Web search no date filter param. Use specific year 2024.
{
"query": "\"Neo80 Cu\" 2024 pre order Qwertykeys release"
}# Web Search Results for ""Neo80 Cu" 2024 pre order Qwertykeys release" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... ## Neo80 Cu ## 2. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 3. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ... Pre Order Policy and Disclaimer ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Item is in stock Only 0 left in stock Item is out of stock Item is unavailable ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ## 5. [GB] Neo80 CU by Qwertykeys – pantheonkeys URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys [GB] Neo80 CU by Qwertykeys – pantheonkeys ... ## [GB] Neo80 CU by Qwertykeys ... $238.00 SGD ... Out of stock ... Pickup currently unavailable at Pantheonkeys ... This is a pre-order item, please do not add other in stock items to your cart when ordering or your order will be cancelled. ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026
No evidence 2024. Let's search Reddit via web.
{
"query": "reddit Neo80 Cu release date first batch"
}# Web Search Results for "reddit Neo80 Cu release date first batch" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... ## Neo80 Cu ... The Neo80 Cu is ... Neo80 ## 2. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Reb ... # [Pre-Order] Neo80 Cu - Copper Bottom ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ## 3. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... after pre-order ends ## 4. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard Estimated Ship Time: 12 Weeks ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Estimated Ship Date: 12 weeks after ordering ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ## 5. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit manufactured to ship at a later date detailed in ... available for purchase ... allocated stock sells through, ... move to our In Stock range ... Pre-Orders ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
No Reddit. Could search via "Qwertykeys Neo80 Cu GB date" or "Neo80 Cu Group Buy" on geekhack.
{
"query": "\"Neo80 Cu\" \"geekhack\" OR \"Reddit\" \"group buy\" date"
}Canceled due to user interrupt (tool_call_id: functions.web_search:21)
User pasted YouTube link. Per AGENTS.md: If user ever pastes YouTube link, use yt-dlp to summarize video; get auto-generated captions to do this; if asked to summarize a YouTube video, do not name the session until after reading and understanding full YouTube video transcript. So need summarize this video. It's likely about Neo80 Cu, which may contain release/price info. We need run yt-dlp to get transcript. We have shell tool. Use yt-dlp installed? Probably. Let's check. We need extract subtitles. Use yt-dlp --list-subs maybe then --write-auto-sub --skip-download. Let's execute. Also no need to name session. Need maybe download transcript to a temp file and read. We have skill? Not needed. We should not explore codebase. Use exec.
{
"command": "yt-dlp --version"
}Output from command in shell 46342d: 2025.12.08 Exit code: 0
Good. Use yt-dlp to download auto-generated captions. Let's list available subtitles.
{
"command": "yt-dlp --list-subs \"https://www.youtube.com/watch?v=utf3wmYr-qo&pp=ygUHbmVvODBjdQ%3D%3D\""
}Output from command in shell c22a89:
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=utf3wmYr-qo&pp=ygUHbmVvODBjdQ%3D%3D
[youtube] utf3wmYr-qo: Downloading webpage
[youtube] utf3wmYr-qo: Downloading tv client config
[youtube] utf3wmYr-qo: Downloading player 882a803a-main
[youtube] utf3wmYr-qo: Downloading tv player API JSON
[youtube] utf3wmYr-qo: Downloading android sdkless player API JSON
WARNING: [youtube] utf3wmYr-qo: Some tv client https formats have been skipped as they are missing a url. YouTube may have enabled the SABR-only or Server-Side Ad Placement experiment for the current session. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details
[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] utf3wmYr-qo: 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
WARNING: [youtube] utf3wmYr-qo: Some web client https formats have been skipped as they are missing a url. YouTube is forcing SABR streaming for this client. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details
[info] Available automatic captions for utf3wmYr-qo:
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
utf3wmYr-qo has no subtitles
Exit code: 0No manual subtitles but auto captions available. Need download auto-generated English captions. Use --write-auto-sub --skip-download --sub-langs en. Output to temp.
{
"command": "cd /tmp && yt-dlp --write-auto-sub --skip-download --sub-langs en --no-update \"https://www.youtube.com/watch?v=utf3wmYr-qo&pp=ygUHbmVvODBjdQ%3D%3D\""
}Output from command in shell b08387: [youtube] Extracting URL: https://www.youtube.com/watch?v=utf3wmYr-qo&pp=ygUHbmVvODBjdQ%3D%3D [youtube] utf3wmYr-qo: Downloading webpage [youtube] utf3wmYr-qo: Downloading tv client config [youtube] utf3wmYr-qo: Downloading player 882a803a-main [youtube] utf3wmYr-qo: Downloading tv player API JSON [youtube] utf3wmYr-qo: Downloading android sdkless player API JSON WARNING: [youtube] utf3wmYr-qo: Some tv client https formats have been skipped as they are missing a url. YouTube may have enabled the SABR-only or Server-Side Ad Placement experiment for the current session. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details [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] utf3wmYr-qo: 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 WARNING: [youtube] utf3wmYr-qo: Some web client https formats have been skipped as they are missing a url. YouTube is forcing SABR streaming for this client. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details [info] utf3wmYr-qo: Downloading subtitles: en [info] utf3wmYr-qo: Downloading 1 format(s): 401+251-11 [info] Writing video subtitles to: Building The Neo80 Cu [utf3wmYr-qo].en.vtt [download] Destination: Building The Neo80 Cu [utf3wmYr-qo].en.vtt [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 3.62MiB/s (00:00:00) [download] 31.00KiB at 1.67MiB/s (00:00:00) [download] 63.00KiB at 2.12MiB/s (00:00:00) [download] 126.80KiB at 2.71MiB/s (00:00:00) [download] 100% of 126.80KiB in 00:00:00 at 802.60KiB/s Exit code: 0
Subtitle downloaded. Need read and summarize. Use read.
{
"file_path": "/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt"
}<file-view path="/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt" start_line="1" end_line="470" total_lines="3112"> 1|WEBVTT 2|Kind: captions 3|Language: en 4| 5|00:00:01.120 --> 00:00:02.950 align:start position:0% 6| 7|Hello. 8| 9|00:00:02.950 --> 00:00:02.960 align:start position:0% 10|Hello. 11| 12| 13|00:00:02.960 --> 00:00:05.190 align:start position:0% 14|Hello. 15|Warm<00:00:03.280><c> regards.</c><00:00:04.240><c> Oh,</c><00:00:04.400><c> that's</c><00:00:04.640><c> one</c><00:00:04.799><c> I</c><00:00:04.960><c> haven't</c> 16| 17|00:00:05.190 --> 00:00:05.200 align:start position:0% 18|Warm regards. Oh, that's one I haven't 19| 20| 21|00:00:05.200 --> 00:00:07.590 align:start position:0% 22|Warm regards. Oh, that's one I haven't 23|used.<00:00:05.520><c> Warm</c><00:00:05.839><c> regards,</c><00:00:06.319><c> everybody.</c><00:00:07.200><c> I</c><00:00:07.440><c> guess</c> 24| 25|00:00:07.590 --> 00:00:07.600 align:start position:0% 26|used. Warm regards, everybody. I guess 27| 28| 29|00:00:07.600 --> 00:00:10.470 align:start position:0% 30|used. Warm regards, everybody. I guess 31|let's<00:00:07.919><c> jump</c><00:00:08.160><c> right</c><00:00:08.400><c> into</c><00:00:08.639><c> the</c><00:00:08.880><c> Neo80</c><00:00:09.920><c> CU,</c> 32| 33|00:00:10.470 --> 00:00:10.480 align:start position:0% 34|let's jump right into the Neo80 CU, 35| 36| 37|00:00:10.480 --> 00:00:14.230 align:start position:0% 38|let's jump right into the Neo80 CU, 39|shall<00:00:10.719><c> we?</c><00:00:11.280><c> All</c><00:00:11.360><c> right,</c><00:00:12.240><c> so</c><00:00:12.719><c> starts</c><00:00:12.960><c> at</c><00:00:13.120><c> 209.</c> 40| 41|00:00:14.230 --> 00:00:14.240 align:start position:0% 42|shall we? All right, so starts at 209. 43| 44| 45|00:00:14.240 --> 00:00:17.510 align:start position:0% 46|shall we? All right, so starts at 209. 47|The<00:00:14.480><c> color</c><00:00:14.719><c> options</c><00:00:15.360><c> are</c><00:00:16.560><c> great.</c><00:00:17.119><c> Um,</c><00:00:17.359><c> the</c> 48| 49|00:00:17.510 --> 00:00:17.520 align:start position:0% 50|The color options are great. Um, the 51| 52| 53|00:00:17.520 --> 00:00:19.590 align:start position:0% 54|The color options are great. Um, the 55|Mont<00:00:17.760><c> Blanc</c><00:00:18.160><c> is</c><00:00:18.320><c> my</c><00:00:18.480><c> favorite.</c><00:00:19.279><c> I</c><00:00:19.439><c> don't</c><00:00:19.520><c> know</c> 56| 57|00:00:19.590 --> 00:00:19.600 align:start position:0% 58|Mont Blanc is my favorite. I don't know 59| 60| 61|00:00:19.600 --> 00:00:21.109 align:start position:0% 62|Mont Blanc is my favorite. I don't know 63|if<00:00:19.760><c> I</c><00:00:19.920><c> got</c><00:00:20.000><c> the</c><00:00:20.080><c> Mont</c><00:00:20.320><c> Blanc</c><00:00:20.640><c> today,</c><00:00:20.800><c> but</c><00:00:20.960><c> the</c> 64| 65|00:00:21.109 --> 00:00:21.119 align:start position:0% 66|if I got the Mont Blanc today, but the 67| 68| 69|00:00:21.119 --> 00:00:22.870 align:start position:0% 70|if I got the Mont Blanc today, but the 71|jade's<00:00:21.520><c> also</c><00:00:21.760><c> really</c><00:00:22.000><c> pretty.</c><00:00:22.320><c> The</c><00:00:22.480><c> taupe</c> 72| 73|00:00:22.870 --> 00:00:22.880 align:start position:0% 74|jade's also really pretty. The taupe 75| 76| 77|00:00:22.880 --> 00:00:25.830 align:start position:0% 78|jade's also really pretty. The taupe 79|gray<00:00:23.119><c> is</c><00:00:23.359><c> pretty.</c><00:00:24.160><c> You</c><00:00:24.400><c> know,</c><00:00:25.199><c> I</c><00:00:25.439><c> hate</c><00:00:25.680><c> saying</c> 80| 81|00:00:25.830 --> 00:00:25.840 align:start position:0% 82|gray is pretty. You know, I hate saying 83| 84| 85|00:00:25.840 --> 00:00:27.349 align:start position:0% 86|gray is pretty. You know, I hate saying 87|this,<00:00:26.000><c> but</c><00:00:26.160><c> the</c><00:00:26.320><c> slate</c><00:00:26.640><c> blue</c><00:00:26.800><c> is</c><00:00:26.960><c> not</c><00:00:27.119><c> bad</c> 88| 89|00:00:27.349 --> 00:00:27.359 align:start position:0% 90|this, but the slate blue is not bad 91| 92| 93|00:00:27.359 --> 00:00:29.750 align:start position:0% 94|this, but the slate blue is not bad 95|either,<00:00:27.680><c> but</c><00:00:27.920><c> the</c><00:00:28.080><c> MLANC</c><00:00:28.640><c> looks</c><00:00:29.039><c> amazing.</c> 96| 97|00:00:29.750 --> 00:00:29.760 align:start position:0% 98|either, but the MLANC looks amazing. 99| 100| 101|00:00:29.760 --> 00:00:31.269 align:start position:0% 102|either, but the MLANC looks amazing. 103|It's<00:00:30.000><c> like</c><00:00:30.160><c> one</c><00:00:30.400><c> of</c><00:00:30.480><c> my</c><00:00:30.640><c> favorite</c><00:00:30.880><c> colors</c> 104| 105|00:00:31.269 --> 00:00:31.279 align:start position:0% 106|It's like one of my favorite colors 107| 108| 109|00:00:31.279 --> 00:00:33.910 align:start position:0% 110|It's like one of my favorite colors 111|here,<00:00:32.480><c> followed</c><00:00:32.800><c> up</c><00:00:32.960><c> by</c><00:00:33.120><c> jade.</c><00:00:33.520><c> I</c><00:00:33.680><c> think</c><00:00:33.760><c> the</c> 112| 113|00:00:33.910 --> 00:00:33.920 align:start position:0% 114|here, followed up by jade. I think the 115| 116| 117|00:00:33.920 --> 00:00:36.549 align:start position:0% 118|here, followed up by jade. I think the 119|jade<00:00:34.239><c> is</c><00:00:34.480><c> actually</c><00:00:34.719><c> quite</c><00:00:35.120><c> nice</c><00:00:35.360><c> as</c><00:00:35.600><c> well.</c><00:00:36.320><c> Uh,</c> 120| 121|00:00:36.549 --> 00:00:36.559 align:start position:0% 122|jade is actually quite nice as well. Uh, 123| 124| 125|00:00:36.559 --> 00:00:38.150 align:start position:0% 126|jade is actually quite nice as well. Uh, 127|so<00:00:36.719><c> we</c><00:00:36.880><c> have</c><00:00:36.960><c> some</c><00:00:37.200><c> really</c><00:00:37.520><c> fire</c><00:00:37.840><c> colors</c> 128| 129|00:00:38.150 --> 00:00:38.160 align:start position:0% 130|so we have some really fire colors 131| 132| 133|00:00:38.160 --> 00:00:41.270 align:start position:0% 134|so we have some really fire colors 135|there.<00:00:38.640><c> Nine</c><00:00:38.960><c> total</c><00:00:39.280><c> ones.</c><00:00:40.399><c> I</c><00:00:40.640><c> think</c><00:00:40.800><c> my</c><00:00:41.040><c> least</c> 136| 137|00:00:41.270 --> 00:00:41.280 align:start position:0% 138|there. Nine total ones. I think my least 139| 140| 141|00:00:41.280 --> 00:00:43.750 align:start position:0% 142|there. Nine total ones. I think my least 143|favorite<00:00:41.600><c> is</c><00:00:41.840><c> probably</c><00:00:42.079><c> just</c><00:00:42.320><c> going</c><00:00:42.399><c> to</c><00:00:42.559><c> be,</c> 144| 145|00:00:43.750 --> 00:00:43.760 align:start position:0% 146|favorite is probably just going to be, 147| 148| 149|00:00:43.760 --> 00:00:45.110 align:start position:0% 150|favorite is probably just going to be, 151|you<00:00:43.920><c> know,</c><00:00:44.079><c> I'm</c><00:00:44.320><c> really</c><00:00:44.480><c> not</c><00:00:44.640><c> vibing</c><00:00:44.960><c> with</c> 152| 153|00:00:45.110 --> 00:00:45.120 align:start position:0% 154|you know, I'm really not vibing with 155| 156| 157|00:00:45.120 --> 00:00:47.270 align:start position:0% 158|you know, I'm really not vibing with 159|teal<00:00:45.360><c> this</c><00:00:45.600><c> time</c><00:00:45.760><c> around.</c><00:00:46.160><c> And</c><00:00:46.320><c> maybe</c><00:00:46.879><c> maybe</c> 160| 161|00:00:47.270 --> 00:00:47.280 align:start position:0% 162|teal this time around. And maybe maybe 163| 164| 165|00:00:47.280 --> 00:00:48.790 align:start position:0% 166|teal this time around. And maybe maybe 167|black,<00:00:47.600><c> but</c><00:00:47.760><c> black's</c><00:00:48.079><c> always</c><00:00:48.239><c> a</c><00:00:48.399><c> good</c><00:00:48.480><c> one</c><00:00:48.640><c> if</c> 168| 169|00:00:48.790 --> 00:00:48.800 align:start position:0% 170|black, but black's always a good one if 171| 172| 173|00:00:48.800 --> 00:00:50.389 align:start position:0% 174|black, but black's always a good one if 175|you<00:00:48.879><c> just</c><00:00:48.960><c> want</c><00:00:49.039><c> to</c><00:00:49.120><c> go</c><00:00:49.360><c> stealthy.</c><00:00:49.920><c> Maybe</c><00:00:50.079><c> teal</c> 176| 177|00:00:50.389 --> 00:00:50.399 align:start position:0% 178|you just want to go stealthy. Maybe teal 179| 180| 181|00:00:50.399 --> 00:00:52.310 align:start position:0% 182|you just want to go stealthy. Maybe teal 183|is<00:00:50.559><c> my</c><00:00:50.719><c> least</c><00:00:51.039><c> favorite.</c><00:00:51.680><c> Okay,</c><00:00:51.920><c> let's</c><00:00:52.160><c> just</c> 184| 185|00:00:52.310 --> 00:00:52.320 align:start position:0% 186|is my least favorite. Okay, let's just 187| 188| 189|00:00:52.320 --> 00:00:53.750 align:start position:0% 190|is my least favorite. Okay, let's just 191|look<00:00:52.399><c> at</c><00:00:52.559><c> all</c><00:00:52.640><c> the</c><00:00:52.879><c> accessories,</c><00:00:53.360><c> I</c><00:00:53.520><c> guess,</c> 192| 193|00:00:53.750 --> 00:00:53.760 align:start position:0% 194|look at all the accessories, I guess, 195| 196| 197|00:00:53.760 --> 00:00:55.510 align:start position:0% 198|look at all the accessories, I guess, 199|first. 200| 201|00:00:55.510 --> 00:00:55.520 align:start position:0% 202|first. 203| 204| 205|00:00:55.520 --> 00:00:56.950 align:start position:0% 206|first. 207|Uh,<00:00:55.760><c> I</c><00:00:56.000><c> have</c><00:00:56.079><c> to</c><00:00:56.160><c> double</c><00:00:56.399><c> check</c><00:00:56.559><c> if</c><00:00:56.640><c> you</c><00:00:56.800><c> get</c> 208| 209|00:00:56.950 --> 00:00:56.960 align:start position:0% 210|Uh, I have to double check if you get 211| 212| 213|00:00:56.960 --> 00:00:58.869 align:start position:0% 214|Uh, I have to double check if you get 215|stabs.<00:00:57.360><c> I</c><00:00:57.520><c> feel</c><00:00:57.600><c> like</c><00:00:57.760><c> you</c><00:00:57.920><c> might,</c><00:00:58.160><c> but</c><00:00:58.640><c> maybe</c> 216| 217|00:00:58.869 --> 00:00:58.879 align:start position:0% 218|stabs. I feel like you might, but maybe 219| 220| 221|00:00:58.879 --> 00:01:01.110 align:start position:0% 222|stabs. I feel like you might, but maybe 223|you<00:00:59.120><c> don't.</c><00:00:59.760><c> Oh,</c><00:01:00.000><c> like</c><00:01:00.160><c> a</c><00:01:00.320><c> little</c><00:01:00.559><c> accessories</c> 224| 225|00:01:01.110 --> 00:01:01.120 align:start position:0% 226|you don't. Oh, like a little accessories 227| 228| 229|00:01:01.120 --> 00:01:02.790 align:start position:0% 230|you don't. Oh, like a little accessories 231|kit<00:01:01.359><c> with</c><00:01:01.600><c> like</c><00:01:01.760><c> a</c><00:01:02.000><c> switch</c><00:01:02.239><c> puller,</c><00:01:02.640><c> a</c> 232| 233|00:01:02.790 --> 00:01:02.800 align:start position:0% 234|kit with like a switch puller, a 235| 236| 237|00:01:02.800 --> 00:01:04.469 align:start position:0% 238|kit with like a switch puller, a 239|screwdriver, 240| 241|00:01:04.469 --> 00:01:04.479 align:start position:0% 242|screwdriver, 243| 244| 245|00:01:04.479 --> 00:01:08.149 align:start position:0% 246|screwdriver, 247|a<00:01:04.720><c> cable,</c><00:01:05.199><c> which</c><00:01:06.080><c> Oh,</c><00:01:06.400><c> boy.</c><00:01:06.799><c> Did</c><00:01:07.040><c> I</c><00:01:07.200><c> get</c><00:01:07.280><c> a</c><00:01:07.520><c> PEI</c> 248| 249|00:01:08.149 --> 00:01:08.159 align:start position:0% 250|a cable, which Oh, boy. Did I get a PEI 251| 252| 253|00:01:08.159 --> 00:01:10.710 align:start position:0% 254|a cable, which Oh, boy. Did I get a PEI 255|plate,<00:01:09.200><c> Aloo?</c><00:01:09.760><c> Oh,</c><00:01:09.920><c> this</c><00:01:10.000><c> is</c><00:01:10.080><c> the</c><00:01:10.240><c> Chameford</c> 256| 257|00:01:10.710 --> 00:01:10.720 align:start position:0% 258|plate, Aloo? Oh, this is the Chameford 259| 260| 261|00:01:10.720 --> 00:01:15.429 align:start position:0% 262|plate, Aloo? Oh, this is the Chameford 263|one.<00:01:11.600><c> Now,</c><00:01:11.840><c> they</c><00:01:12.159><c> sent</c><00:01:12.400><c> us</c><00:01:13.360><c> a</c><00:01:14.080><c> try</c><00:01:14.400><c> mode</c><00:01:14.720><c> PCB.</c> 264| 265|00:01:15.429 --> 00:01:15.439 align:start position:0% 266|one. Now, they sent us a try mode PCB. 267| 268| 269|00:01:15.439 --> 00:01:17.270 align:start position:0% 270|one. Now, they sent us a try mode PCB. 271|So,<00:01:15.600><c> we</c><00:01:15.680><c> have</c><00:01:15.760><c> a</c><00:01:15.840><c> hot</c><00:01:16.080><c> swap</c><00:01:16.320><c> PCB</c><00:01:16.720><c> today,</c><00:01:17.040><c> which</c> 272| 273|00:01:17.270 --> 00:01:17.280 align:start position:0% 274|So, we have a hot swap PCB today, which 275| 276| 277|00:01:17.280 --> 00:01:18.789 align:start position:0% 278|So, we have a hot swap PCB today, which 279|we'll<00:01:17.520><c> look</c><00:01:17.680><c> more</c><00:01:17.840><c> in</c><00:01:18.080><c> detail</c><00:01:18.320><c> when</c><00:01:18.479><c> we</c><00:01:18.640><c> open</c> 280| 281|00:01:18.789 --> 00:01:18.799 align:start position:0% 282|we'll look more in detail when we open 283| 284| 285|00:01:18.799 --> 00:01:21.350 align:start position:0% 286|we'll look more in detail when we open 287|this<00:01:18.960><c> up.</c><00:01:19.680><c> We</c><00:01:19.920><c> got</c><00:01:20.080><c> gaskets</c><00:01:20.640><c> here.</c><00:01:21.040><c> Looks</c><00:01:21.280><c> like</c> 288| 289|00:01:21.350 --> 00:01:21.360 align:start position:0% 290|this up. We got gaskets here. Looks like 291| 292| 293|00:01:21.360 --> 00:01:22.710 align:start position:0% 294|this up. We got gaskets here. Looks like 295|we<00:01:21.600><c> also</c><00:01:21.759><c> have</c><00:01:21.920><c> some</c><00:01:22.159><c> other</c><00:01:22.400><c> little</c> 296| 297|00:01:22.710 --> 00:01:22.720 align:start position:0% 298|we also have some other little 299| 300| 301|00:01:22.720 --> 00:01:24.390 align:start position:0% 302|we also have some other little 303|accessories. 304| 305|00:01:24.390 --> 00:01:24.400 align:start position:0% 306|accessories. 307| 308| 309|00:01:24.400 --> 00:01:26.630 align:start position:0% 310|accessories. 311|We'll<00:01:24.720><c> go</c><00:01:24.799><c> through</c><00:01:24.960><c> all</c><00:01:25.119><c> these</c><00:01:25.439><c> when</c><00:01:25.680><c> we</c><00:01:26.400><c> open</c> 312| 313|00:01:26.630 --> 00:01:26.640 align:start position:0% 314|We'll go through all these when we open 315| 316| 317|00:01:26.640 --> 00:01:29.749 align:start position:0% 318|We'll go through all these when we open 319|up<00:01:26.799><c> the</c><00:01:26.960><c> board</c><00:01:27.280><c> more.</c><00:01:28.560><c> F1</c><00:01:29.040><c> heavy.</c><00:01:29.439><c> I</c><00:01:29.680><c> think</c> 320| 321|00:01:29.749 --> 00:01:29.759 align:start position:0% 322|up the board more. F1 heavy. I think 323| 324| 325|00:01:29.759 --> 00:01:32.149 align:start position:0% 326|up the board more. F1 heavy. I think 327|it's<00:01:29.920><c> heavier</c><00:01:30.240><c> than</c><00:01:30.400><c> the</c><00:01:30.560><c> F1.</c> 328| 329|00:01:32.149 --> 00:01:32.159 align:start position:0% 330|it's heavier than the F1. 331| 332| 333|00:01:32.159 --> 00:01:37.030 align:start position:0% 334|it's heavier than the F1. 335|Ooh,<00:01:32.560><c> the</c><00:01:32.799><c> jade</c><00:01:33.280><c> is</c><00:01:33.680><c> nice</c><00:01:34.079><c> in</c><00:01:34.400><c> person.</c> 336| 337|00:01:37.030 --> 00:01:37.040 align:start position:0% 338|Ooh, the jade is nice in person. 339| 340| 341|00:01:37.040 --> 00:01:39.270 align:start position:0% 342|Ooh, the jade is nice in person. 343|Oh<00:01:37.360><c> [ __ ]</c><00:01:37.680><c> I</c><00:01:37.920><c> actually</c><00:01:38.159><c> really</c><00:01:38.320><c> like</c><00:01:38.560><c> this.</c> 344| 345|00:01:39.270 --> 00:01:39.280 align:start position:0% 346|Oh [ __ ] I actually really like this. 347| 348| 349|00:01:39.280 --> 00:01:40.710 align:start position:0% 350|Oh [ __ ] I actually really like this. 351|The<00:01:39.520><c> side</c><00:01:39.759><c> profile</c><00:01:40.079><c> on</c><00:01:40.240><c> this</c><00:01:40.400><c> is</c><00:01:40.560><c> really</c> 352| 353|00:01:40.710 --> 00:01:40.720 align:start position:0% 354|The side profile on this is really 355| 356| 357|00:01:40.720 --> 00:01:44.230 align:start position:0% 358|The side profile on this is really 359|sharp.<00:01:41.439><c> That</c><00:01:41.680><c> is</c> 360| 361|00:01:44.230 --> 00:01:44.240 align:start position:0% 362|sharp. That is 363| 364| 365|00:01:44.240 --> 00:01:47.109 align:start position:0% 366|sharp. That is 367|quite<00:01:44.560><c> the</c><00:01:44.799><c> side</c><00:01:45.040><c> profile.</c> 368| 369|00:01:47.109 --> 00:01:47.119 align:start position:0% 370|quite the side profile. 371| 372| 373|00:01:47.119 --> 00:01:49.830 align:start position:0% 374|quite the side profile. 375|I<00:01:47.360><c> mean,</c><00:01:47.520><c> I'm</c><00:01:47.759><c> I</c><00:01:48.079><c> haven't</c><00:01:48.240><c> even</c><00:01:49.280><c> really</c><00:01:49.600><c> given</c> 376| 377|00:01:49.830 --> 00:01:49.840 align:start position:0% 378|I mean, I'm I haven't even really given 379| 380| 381|00:01:49.840 --> 00:01:51.510 align:start position:0% 382|I mean, I'm I haven't even really given 383|this<00:01:50.000><c> a</c><00:01:50.159><c> 360</c><00:01:50.640><c> yet,</c><00:01:50.799><c> and</c><00:01:50.880><c> I'm</c><00:01:51.119><c> already</c><00:01:51.280><c> sold</c> 384| 385|00:01:51.510 --> 00:01:51.520 align:start position:0% 386|this a 360 yet, and I'm already sold 387| 388| 389|00:01:51.520 --> 00:01:53.830 align:start position:0% 390|this a 360 yet, and I'm already sold 391|just<00:01:51.680><c> off</c><00:01:51.840><c> of</c><00:01:52.000><c> this</c><00:01:52.159><c> one</c><00:01:52.320><c> feature.</c><00:01:53.280><c> Like</c><00:01:53.520><c> this</c> 392| 393|00:01:53.830 --> 00:01:53.840 align:start position:0% 394|just off of this one feature. Like this 395| 396| 397|00:01:53.840 --> 00:01:55.590 align:start position:0% 398|just off of this one feature. Like this 399|little<00:01:54.159><c> seam</c><00:01:54.560><c> over</c><00:01:54.720><c> here</c><00:01:54.960><c> that</c><00:01:55.280><c> kind</c><00:01:55.520><c> of</c> 400| 401|00:01:55.590 --> 00:01:55.600 align:start position:0% 402|little seam over here that kind of 403| 404| 405|00:01:55.600 --> 00:01:57.270 align:start position:0% 406|little seam over here that kind of 407|expands<00:01:56.000><c> in</c><00:01:56.240><c> the</c><00:01:56.320><c> middle,</c><00:01:56.560><c> then</c><00:01:56.799><c> tapers</c> 408| 409|00:01:57.270 --> 00:01:57.280 align:start position:0% 410|expands in the middle, then tapers 411| 412| 413|00:01:57.280 --> 00:01:59.749 align:start position:0% 414|expands in the middle, then tapers 415|downwards.<00:01:58.399><c> This</c><00:01:58.640><c> beautiful</c><00:01:59.119><c> curve</c><00:01:59.520><c> over</c> 416| 417|00:01:59.749 --> 00:01:59.759 align:start position:0% 418|downwards. This beautiful curve over 419| 420| 421|00:01:59.759 --> 00:02:02.389 align:start position:0% 422|downwards. This beautiful curve over 423|here.<00:02:00.960><c> I</c><00:02:01.200><c> think</c><00:02:01.280><c> they</c><00:02:01.520><c> did</c><00:02:01.600><c> a</c><00:02:01.759><c> lovely</c><00:02:02.000><c> job</c><00:02:02.159><c> with</c> 424| 425|00:02:02.389 --> 00:02:02.399 align:start position:0% 426|here. I think they did a lovely job with 427| 428| 429|00:02:02.399 --> 00:02:05.109 align:start position:0% 430|here. I think they did a lovely job with 431|this.<00:02:03.520><c> Lovely,</c><00:02:04.000><c> lovely</c><00:02:04.399><c> job</c><00:02:04.560><c> with</c><00:02:04.719><c> the</c><00:02:04.880><c> side</c> 432| 433|00:02:05.109 --> 00:02:05.119 align:start position:0% 434|this. Lovely, lovely job with the side 435| 436| 437|00:02:05.119 --> 00:02:07.590 align:start position:0% 438|this. Lovely, lovely job with the side 439|profile.<00:02:06.000><c> So,</c><00:02:06.240><c> that</c><00:02:06.479><c> seam</c><00:02:06.799><c> kind</c><00:02:06.960><c> of</c><00:02:07.119><c> continues</c> 440| 441|00:02:07.590 --> 00:02:07.600 align:start position:0% 442|profile. So, that seam kind of continues 443| 444| 445|00:02:07.600 --> 00:02:10.869 align:start position:0% 446|profile. So, that seam kind of continues 447|on<00:02:08.239><c> all</c><00:02:08.560><c> around</c><00:02:08.800><c> the</c><00:02:09.039><c> board,</c><00:02:09.280><c> which</c><00:02:09.520><c> is</c><00:02:09.759><c> nice.</c> 448| 449|00:02:10.869 --> 00:02:10.879 align:start position:0% 450|on all around the board, which is nice. 451| 452| 453|00:02:10.879 --> 00:02:13.110 align:start position:0% 454|on all around the board, which is nice. 455|Kind<00:02:11.039><c> of</c><00:02:11.200><c> maintains</c><00:02:11.680><c> its</c><00:02:12.000><c> width</c><00:02:12.239><c> in</c><00:02:12.480><c> the</c><00:02:12.640><c> back.</c> 456| 457|00:02:13.110 --> 00:02:13.120 align:start position:0% 458|Kind of maintains its width in the back. 459| 460| 461|00:02:13.120 --> 00:02:14.710 align:start position:0% 462|Kind of maintains its width in the back. 463|And<00:02:13.280><c> then</c><00:02:13.440><c> we</c><00:02:13.680><c> have</c><00:02:13.760><c> the</c><00:02:13.920><c> weight,</c><00:02:14.400><c> which</c> 464| 465|00:02:14.710 --> 00:02:14.720 align:start position:0% 466|And then we have the weight, which 467| 468| 469|00:02:14.720 --> 00:02:17.510 align:start position:0% 470|And then we have the weight, which </file-view>
Transcript has start: "starts at 209". Probably $209? But also earlier web price $259.99. We need read more to get context. This transcript is long (3112 lines). We can parse for price and release date. Use grep on file to find "209" and "release"/"price"/"drop"/"pre-order"/"group buy"/"date".
{
"pattern": "(209|price|release|drop|pre.?order|group buy|USD|\\$|date|available|launch)",
"path": "/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt",
"case_insensitive": true,
"output_mode": "content",
"max_results": 100,
"context_lines": 1
}Found 6 match(es) for pattern '(209|price|release|drop|pre.?order|group buy|USD|\$|date|available|launch)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 6 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 38|let's jump right into the Neo80 CU, > 39|shall<00:00:10.719><c> we?</c><00:00:11.280><c> All</c><00:00:11.360><c> right,</c><00:00:12.240><c> so</c><00:00:12.719><c> starts</c><00:00:12.960><c> at</c><00:00:13.120><c> 209.</c> 40| 41|00:00:14.230 --> 00:00:14.240 align:start position:0% > 42|shall we? All right, so starts at 209. 43| ... 45|00:00:14.240 --> 00:00:17.510 align:start position:0% > 46|shall we? All right, so starts at 209. 47|The<00:00:14.480><c> color</c><00:00:14.719><c> options</c><00:00:15.360><c> are</c><00:00:16.560><c> great.</c><00:00:17.119><c> Um,</c><00:00:17.359><c> the</c> ... 2870|and there's not a single iteration of >2871|this<00:16:08.399><c> that</c><00:16:08.720><c> goes</c><00:16:08.959><c> above</c><00:16:09.440><c> $299</c> 2872| 2873|00:16:11.189 --> 00:16:11.199 align:start position:0% >2874|this that goes above $299 2875| ... 2877|00:16:11.199 --> 00:16:13.110 align:start position:0% >2878|this that goes above $299 2879|unless<00:16:11.519><c> you're</c><00:16:11.680><c> getting</c><00:16:11.839><c> extra</c><00:16:12.160><c> pieces.</c>
Only two price mentions. Need maybe search transcript for time references like "month", "year", "January", "2024", "2025", "pre-order", "group buy".
{
"pattern": "(January|February|March|April|May|June|July|August|September|October|November|December|2024|2025|2026|group buy|pre-order|preorder|available|shipping|ship|drop)",
"path": "/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt",
"case_insensitive": true,
"output_mode": "content",
"max_results": 100,
"context_lines": 1
}Found 36 match(es) for pattern '(January|February|March|April|May|June|July|August|September|October|November|December|2024|2025|2026|group buy|pre-order|preorder|available|shipping|ship|drop)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 36 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 158|you know, I'm really not vibing with > 159|teal<00:00:45.360><c> this</c><00:00:45.600><c> time</c><00:00:45.760><c> around.</c><00:00:46.160><c> And</c><00:00:46.320><c> maybe</c><00:00:46.879><c> maybe</c> 160| 161|00:00:47.270 --> 00:00:47.280 align:start position:0% > 162|teal this time around. And maybe maybe 163| ... 165|00:00:47.280 --> 00:00:48.790 align:start position:0% > 166|teal this time around. And maybe maybe 167|black,<00:00:47.600><c> but</c><00:00:47.760><c> black's</c><00:00:48.079><c> always</c><00:00:48.239><c> a</c><00:00:48.399><c> good</c><00:00:48.480><c> one</c><00:00:48.640><c> if</c> ... 174|black, but black's always a good one if > 175|you<00:00:48.879><c> just</c><00:00:48.960><c> want</c><00:00:49.039><c> to</c><00:00:49.120><c> go</c><00:00:49.360><c> stealthy.</c><00:00:49.920><c> Maybe</c><00:00:50.079><c> teal</c> 176| 177|00:00:50.389 --> 00:00:50.399 align:start position:0% > 178|you just want to go stealthy. Maybe teal 179| ... 181|00:00:50.399 --> 00:00:52.310 align:start position:0% > 182|you just want to go stealthy. Maybe teal 183|is<00:00:50.559><c> my</c><00:00:50.719><c> least</c><00:00:51.039><c> favorite.</c><00:00:51.680><c> Okay,</c><00:00:51.920><c> let's</c><00:00:52.160><c> just</c> ... 214|Uh, I have to double check if you get > 215|stabs.<00:00:57.360><c> I</c><00:00:57.520><c> feel</c><00:00:57.600><c> like</c><00:00:57.760><c> you</c><00:00:57.920><c> might,</c><00:00:58.160><c> but</c><00:00:58.640><c> maybe</c> 216| 217|00:00:58.869 --> 00:00:58.879 align:start position:0% > 218|stabs. I feel like you might, but maybe 219| ... 221|00:00:58.879 --> 00:01:01.110 align:start position:0% > 222|stabs. I feel like you might, but maybe 223|you<00:00:59.120><c> don't.</c><00:00:59.760><c> Oh,</c><00:01:00.000><c> like</c><00:01:00.160><c> a</c><00:01:00.320><c> little</c><00:01:00.559><c> accessories</c> ... 558|the coating on this minus like the one > 559|or<00:02:44.160><c> piece</c><00:02:44.400><c> two</c><00:02:44.640><c> pieces</c><00:02:44.879><c> of</c><00:02:45.040><c> dust</c><00:02:45.280><c> that</c><00:02:45.440><c> maybe</c> 560| 561|00:02:45.670 --> 00:02:45.680 align:start position:0% > 562|or piece two pieces of dust that maybe 563| ... 565|00:02:45.680 --> 00:02:47.990 align:start position:0% > 566|or piece two pieces of dust that maybe 567|have<00:02:45.840><c> settled</c><00:02:46.080><c> in</c><00:02:46.239><c> it</c><00:02:46.400><c> already.</c> ... 678|think this is bad. Would have I would > 679|have<00:03:22.159><c> I</c><00:03:22.480><c> liked</c><00:03:22.800><c> maybe</c><00:03:23.040><c> something</c><00:03:23.280><c> a</c><00:03:23.519><c> bit</c> 680| 681|00:03:23.670 --> 00:03:23.680 align:start position:0% > 682|have I liked maybe something a bit 683| ... 685|00:03:23.680 --> 00:03:26.149 align:start position:0% > 686|have I liked maybe something a bit 687|bigger<00:03:24.239><c> for</c><00:03:24.560><c> sure,</c> ... 758|I I don't mind it. Like would I prefer > 759|it<00:03:42.319><c> without</c><00:03:42.640><c> it?</c><00:03:42.959><c> Maybe</c><00:03:43.280><c> not.</c><00:03:44.080><c> It's</c><00:03:44.319><c> It's</c><00:03:44.720><c> not</c> 760| 761|00:03:44.949 --> 00:03:44.959 align:start position:0% > 762|it without it? Maybe not. It's It's not 763| ... 765|00:03:44.959 --> 00:03:48.309 align:start position:0% > 766|it without it? Maybe not. It's It's not 767|that<00:03:45.280><c> bad.</c> ... 926|compass. I guess I'm just not 100. I I > 927|just<00:04:38.560><c> I</c><00:04:38.800><c> just</c><00:04:38.960><c> maybe</c><00:04:39.280><c> don't</c><00:04:39.520><c> love</c><00:04:40.080><c> it.</c><00:04:40.320><c> It's</c> 928| 929|00:04:40.629 --> 00:04:40.639 align:start position:0% > 930|just I just maybe don't love it. It's 931| ... 933|00:04:40.639 --> 00:04:43.270 align:start position:0% > 934|just I just maybe don't love it. It's 935|actually<00:04:40.880><c> not</c><00:04:41.040><c> as</c><00:04:41.280><c> bad</c><00:04:41.600><c> on</c><00:04:42.000><c> this</c><00:04:42.320><c> board.</c><00:04:43.040><c> I'm</c> ... 1070|too. I guess the compass sort of ties in >1071|with<00:05:16.240><c> this,</c><00:05:17.039><c> maybe,</c><00:05:17.919><c> but</c><00:05:18.080><c> I</c><00:05:18.240><c> would</c><00:05:18.400><c> have</c><00:05:18.560><c> loved</c> 1072| 1073|00:05:18.710 --> 00:05:18.720 align:start position:0% >1074|with this, maybe, but I would have loved 1075| ... 1077|00:05:18.720 --> 00:05:20.790 align:start position:0% >1078|with this, maybe, but I would have loved 1079|to<00:05:18.880><c> see</c><00:05:19.120><c> something</c><00:05:19.440><c> like</c><00:05:19.680><c> this</c><00:05:20.080><c> on</c><00:05:20.320><c> the</c><00:05:20.560><c> back</c> ... 1398|of a difference. The chamered one has >1399|all<00:06:47.520><c> the</c><00:06:47.680><c> flex</c><00:06:48.000><c> cuts,</c><00:06:49.280><c> which</c><00:06:49.919><c> may</c><00:06:50.160><c> turn</c><00:06:50.400><c> you</c> 1400| 1401|00:06:50.550 --> 00:06:50.560 align:start position:0% >1402|all the flex cuts, which may turn you 1403| ... 1405|00:06:50.560 --> 00:06:52.629 align:start position:0% >1406|all the flex cuts, which may turn you 1407|off<00:06:50.720><c> from</c><00:06:50.960><c> buying</c><00:06:51.199><c> this.</c><00:06:51.840><c> I'm</c><00:06:52.160><c> curious.</c><00:06:52.479><c> I</c> ... 1518|really cool if they can implement this >1519|in<00:07:24.400><c> maybe</c><00:07:24.639><c> future</c><00:07:25.039><c> boards.</c><00:07:26.240><c> You</c><00:07:26.479><c> see</c><00:07:26.639><c> how</c><00:07:27.759><c> this</c> 1520| 1521|00:07:27.990 --> 00:07:28.000 align:start position:0% >1522|in maybe future boards. You see how this 1523| ... 1525|00:07:28.000 --> 00:07:29.990 align:start position:0% >1526|in maybe future boards. You see how this 1527|is<00:07:28.240><c> uh</c><00:07:28.400><c> by</c><00:07:28.560><c> the</c><00:07:28.639><c> way</c><00:07:28.880><c> this</c><00:07:29.120><c> is</c><00:07:29.360><c> not</c><00:07:29.759><c> a</c> ... 1958|That's your That's it. You have this and >1959|maybe<00:09:39.279><c> a</c><00:09:39.440><c> top</c><00:09:39.600><c> mount.</c><00:09:40.720><c> But</c><00:09:41.040><c> if</c><00:09:41.279><c> you</c><00:09:41.519><c> use</c><00:09:42.080><c> these</c> 1960| 1961|00:09:42.389 --> 00:09:42.399 align:start position:0% >1962|maybe a top mount. But if you use these 1963| ... 1965|00:09:42.399 --> 00:09:43.990 align:start position:0% >1966|maybe a top mount. But if you use these 1967|kind<00:09:42.560><c> of</c><00:09:42.640><c> gaskets,</c><00:09:43.279><c> you</c><00:09:43.440><c> can</c><00:09:43.600><c> still</c><00:09:43.839><c> play</c> ... 2486|to open it up. I'm going to just see if >2487|it's<00:13:31.040><c> maybe</c><00:13:31.279><c> a</c><00:13:31.440><c> screw</c><00:13:31.760><c> point</c><00:13:32.079><c> or</c><00:13:32.480><c> let's</c><00:13:32.720><c> see</c> 2488| 2489|00:13:32.870 --> 00:13:32.880 align:start position:0% >2490|it's maybe a screw point or let's see 2491| ... 2493|00:13:32.880 --> 00:13:36.069 align:start position:0% >2494|it's maybe a screw point or let's see 2495|what<00:13:33.040><c> it</c><00:13:33.120><c> is.</c><00:13:34.560><c> All</c><00:13:34.560><c> right.</c><00:13:35.120><c> So,</c><00:13:35.440><c> I</c><00:13:35.680><c> guess</c><00:13:35.839><c> next</c>
Not much. The video might not mention release date. But price "starts at 209" and "not above $299". Need full transcript summary. Since user asked about release date and price, and provided video, likely video contains answer. We need summarize entire transcript. We can read transcript and parse. Use Python to clean VTT into text and read maybe first chunk. But summary can be manual. Need answer to original question: when Neo80 Cu released, how much selling for. The video says "starts at 209" and no version above $299 unless extras. But release date? Search transcript for "released" etc.
{
"pattern": "(released|release|launch|launched|came out|available|dropped|drop|pre-order|preorder|group buy|gb|sale|sold|buy)",
"path": "/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt",
"case_insensitive": true,
"output_mode": "content",
"max_results": 100,
"context_lines": 1
}Found 12 match(es) for pattern '(released|release|launch|launched|came out|available|dropped|drop|pre-order|preorder|group buy|gb|sale|sold|buy)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 12 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 382|I mean, I'm I haven't even really given > 383|this<00:01:50.000><c> a</c><00:01:50.159><c> 360</c><00:01:50.640><c> yet,</c><00:01:50.799><c> and</c><00:01:50.880><c> I'm</c><00:01:51.119><c> already</c><00:01:51.280><c> sold</c> 384| 385|00:01:51.510 --> 00:01:51.520 align:start position:0% > 386|this a 360 yet, and I'm already sold 387| ... 389|00:01:51.520 --> 00:01:53.830 align:start position:0% > 390|this a 360 yet, and I'm already sold 391|just<00:01:51.680><c> off</c><00:01:51.840><c> of</c><00:01:52.000><c> this</c><00:01:52.159><c> one</c><00:01:52.320><c> feature.</c><00:01:53.280><c> Like</c><00:01:53.520><c> this</c> ... 910|bottom and even back. The one thing I am > 911|still<00:04:33.040><c> not</c><00:04:33.360><c> 100%</c><00:04:34.080><c> sold</c><00:04:34.400><c> on</c><00:04:34.720><c> though,</c><00:04:35.520><c> the</c> 912| 913|00:04:35.749 --> 00:04:35.759 align:start position:0% > 914|still not 100% sold on though, the 915| ... 917|00:04:35.759 --> 00:04:38.310 align:start position:0% > 918|still not 100% sold on though, the 919|compass.<00:04:36.639><c> I</c><00:04:36.800><c> guess</c><00:04:36.960><c> I'm</c><00:04:37.120><c> just</c><00:04:37.280><c> not</c><00:04:37.440><c> 100.</c><00:04:37.919><c> I</c><00:04:38.080><c> I</c> ... 942|actually not as bad on this board. I'm > 943|not<00:04:43.520><c> sold</c><00:04:43.840><c> on</c><00:04:44.000><c> the</c><00:04:44.160><c> compass.</c><00:04:44.880><c> Cool</c><00:04:45.199><c> though.</c> 944| 945|00:04:45.590 --> 00:04:45.600 align:start position:0% > 946|not sold on the compass. Cool though. 947| ... 949|00:04:45.600 --> 00:04:47.430 align:start position:0% > 950|not sold on the compass. Cool though. 951|Very<00:04:45.919><c> very</c><00:04:46.160><c> cool.</c><00:04:46.560><c> So,</c><00:04:46.720><c> let's</c><00:04:46.960><c> take</c><00:04:47.120><c> a</c><00:04:47.280><c> look</c> ... 1406|all the flex cuts, which may turn you >1407|off<00:06:50.720><c> from</c><00:06:50.960><c> buying</c><00:06:51.199><c> this.</c><00:06:51.840><c> I'm</c><00:06:52.160><c> curious.</c><00:06:52.479><c> I</c> 1408| 1409|00:06:52.629 --> 00:06:52.639 align:start position:0% >1410|off from buying this. I'm curious. I 1411| ... 1413|00:06:52.639 --> 00:06:55.270 align:start position:0% >1414|off from buying this. I'm curious. I 1415|still<00:06:52.800><c> want</c><00:06:52.880><c> to</c><00:06:52.960><c> use</c><00:06:53.120><c> the</c><00:06:53.280><c> aluminum</c><00:06:53.680><c> today.</c><00:06:55.120><c> We</c>
No release date in video? Need maybe read around 16:08 for price context. Let's read lines around 2860.
{
"file_path": "/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt",
"offset": 2800,
"limit": 200
}<file-view path="/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt" start_line="2800" end_line="2999" total_lines="3112"> 2800| 2801|00:15:50.069 --> 00:15:50.079 align:start position:0% 2802|double up on the force brakes. But yes, 2803| 2804| 2805|00:15:50.079 --> 00:15:51.829 align:start position:0% 2806|double up on the force brakes. But yes, 2807|those<00:15:50.399><c> small</c><00:15:50.720><c> little</c><00:15:50.959><c> things,</c><00:15:51.360><c> small</c><00:15:51.600><c> little</c> 2808| 2809|00:15:51.829 --> 00:15:51.839 align:start position:0% 2810|those small little things, small little 2811| 2812| 2813|00:15:51.839 --> 00:15:54.069 align:start position:0% 2814|those small little things, small little 2815|tweaks,<00:15:52.240><c> I</c><00:15:52.480><c> think</c><00:15:52.560><c> will</c><00:15:52.880><c> make</c><00:15:53.519><c> a</c><00:15:53.839><c> lot</c><00:15:53.920><c> of</c> 2816| 2817|00:15:54.069 --> 00:15:54.079 align:start position:0% 2818|tweaks, I think will make a lot of 2819| 2820| 2821|00:15:54.079 --> 00:15:55.910 align:start position:0% 2822|tweaks, I think will make a lot of 2823|people<00:15:54.320><c> very,</c><00:15:54.560><c> very</c><00:15:54.880><c> happy</c><00:15:55.440><c> at</c><00:15:55.680><c> the</c><00:15:55.759><c> end</c><00:15:55.839><c> of</c> 2824| 2825|00:15:55.910 --> 00:15:55.920 align:start position:0% 2826|people very, very happy at the end of 2827| 2828| 2829|00:15:55.920 --> 00:15:58.870 align:start position:0% 2830|people very, very happy at the end of 2831|the<00:15:56.079><c> day.</c><00:15:57.120><c> Like</c><00:15:57.519><c> lovely</c><00:15:58.079><c> looking</c><00:15:58.399><c> keyboard</c> 2832| 2833|00:15:58.870 --> 00:15:58.880 align:start position:0% 2834|the day. Like lovely looking keyboard 2835| 2836| 2837|00:15:58.880 --> 00:16:00.949 align:start position:0% 2838|the day. Like lovely looking keyboard 2839|though.<00:15:59.759><c> if</c><00:16:00.000><c> you</c><00:16:00.160><c> wanted</c><00:16:00.480><c> something</c><00:16:00.720><c> that</c> 2840| 2841|00:16:00.949 --> 00:16:00.959 align:start position:0% 2842|though. if you wanted something that 2843| 2844| 2845|00:16:00.959 --> 00:16:02.949 align:start position:0% 2846|though. if you wanted something that 2847|felt<00:16:01.360><c> I</c><00:16:01.600><c> think</c><00:16:01.680><c> the</c><00:16:01.920><c> key</c><00:16:02.240><c> takeaway</c><00:16:02.560><c> here</c><00:16:02.800><c> too</c> 2848| 2849|00:16:02.949 --> 00:16:02.959 align:start position:0% 2850|felt I think the key takeaway here too 2851| 2852| 2853|00:16:02.959 --> 00:16:06.310 align:start position:0% 2854|felt I think the key takeaway here too 2855|is<00:16:03.120><c> like</c><00:16:03.360><c> this</c><00:16:03.600><c> feels</c><00:16:04.320><c> incredibly</c><00:16:05.120><c> premium</c> 2856| 2857|00:16:06.310 --> 00:16:06.320 align:start position:0% 2858|is like this feels incredibly premium 2859| 2860| 2861|00:16:06.320 --> 00:16:08.069 align:start position:0% 2862|is like this feels incredibly premium 2863|and<00:16:06.639><c> there's</c><00:16:06.880><c> not</c><00:16:07.040><c> a</c><00:16:07.199><c> single</c><00:16:07.519><c> iteration</c><00:16:07.920><c> of</c> 2864| 2865|00:16:08.069 --> 00:16:08.079 align:start position:0% 2866|and there's not a single iteration of 2867| 2868| 2869|00:16:08.079 --> 00:16:11.189 align:start position:0% 2870|and there's not a single iteration of 2871|this<00:16:08.399><c> that</c><00:16:08.720><c> goes</c><00:16:08.959><c> above</c><00:16:09.440><c> $299</c> 2872| 2873|00:16:11.189 --> 00:16:11.199 align:start position:0% 2874|this that goes above $299 2875| 2876| 2877|00:16:11.199 --> 00:16:13.110 align:start position:0% 2878|this that goes above $299 2879|unless<00:16:11.519><c> you're</c><00:16:11.680><c> getting</c><00:16:11.839><c> extra</c><00:16:12.160><c> pieces.</c> 2880| 2881|00:16:13.110 --> 00:16:13.120 align:start position:0% 2882|unless you're getting extra pieces. 2883| 2884| 2885|00:16:13.120 --> 00:16:14.870 align:start position:0% 2886|unless you're getting extra pieces. 2887|Absolutely<00:16:13.680><c> looks</c><00:16:14.000><c> stunning.</c><00:16:14.399><c> The</c><00:16:14.560><c> side</c> 2888| 2889|00:16:14.870 --> 00:16:14.880 align:start position:0% 2890|Absolutely looks stunning. The side 2891| 2892| 2893|00:16:14.880 --> 00:16:16.870 align:start position:0% 2894|Absolutely looks stunning. The side 2895|profile<00:16:15.360><c> is</c><00:16:15.600><c> just</c><00:16:15.759><c> to</c><00:16:16.000><c> die</c><00:16:16.160><c> for.</c><00:16:16.480><c> Like</c><00:16:16.639><c> this</c> 2896| 2897|00:16:16.870 --> 00:16:16.880 align:start position:0% 2898|profile is just to die for. Like this 2899| 2900| 2901|00:16:16.880 --> 00:16:18.629 align:start position:0% 2902|profile is just to die for. Like this 2903|looks<00:16:17.040><c> great.</c><00:16:17.680><c> You</c><00:16:17.839><c> know,</c><00:16:18.000><c> I</c><00:16:18.240><c> would</c><00:16:18.399><c> actually</c> 2904| 2905|00:16:18.629 --> 00:16:18.639 align:start position:0% 2906|looks great. You know, I would actually 2907| 2908| 2909|00:16:18.639 --> 00:16:20.470 align:start position:0% 2910|looks great. You know, I would actually 2911|even<00:16:19.040><c> say</c><00:16:19.519><c> now</c><00:16:19.680><c> that</c><00:16:19.839><c> we've</c><00:16:20.079><c> done</c><00:16:20.240><c> some</c><00:16:20.399><c> of</c> 2912| 2913|00:16:20.470 --> 00:16:20.480 align:start position:0% 2914|even say now that we've done some of 2915| 2916| 2917|00:16:20.480 --> 00:16:22.629 align:start position:0% 2918|even say now that we've done some of 2919|these<00:16:20.639><c> little</c><00:16:20.880><c> fixes,</c><00:16:21.920><c> I</c><00:16:22.160><c> would</c><00:16:22.320><c> actually</c> 2920| 2921|00:16:22.629 --> 00:16:22.639 align:start position:0% 2922|these little fixes, I would actually 2923| 2924| 2925|00:16:22.639 --> 00:16:25.430 align:start position:0% 2926|these little fixes, I would actually 2927|rank<00:16:23.120><c> this</c><00:16:23.519><c> particular</c><00:16:24.000><c> board</c><00:16:24.639><c> alongside</c><00:16:25.279><c> how</c> 2928| 2929|00:16:25.430 --> 00:16:25.440 align:start position:0% 2930|rank this particular board alongside how 2931| 2932| 2933|00:16:25.440 --> 00:16:27.430 align:start position:0% 2934|rank this particular board alongside how 2935|much<00:16:25.600><c> I</c><00:16:25.759><c> liked</c><00:16:26.000><c> this</c><00:16:26.240><c> the</c><00:16:26.480><c> core</c><00:16:26.800><c> series.</c><00:16:27.279><c> And</c> 2936| 2937|00:16:27.430 --> 00:16:27.440 align:start position:0% 2938|much I liked this the core series. And 2939| 2940| 2941|00:16:27.440 --> 00:16:29.430 align:start position:0% 2942|much I liked this the core series. And 2943|if<00:16:27.680><c> you</c><00:16:27.759><c> guys</c><00:16:27.920><c> remember,</c><00:16:28.639><c> even</c><00:16:28.880><c> while</c><00:16:29.040><c> I</c><00:16:29.279><c> did</c> 2944| 2945|00:16:29.430 --> 00:16:29.440 align:start position:0% 2946|if you guys remember, even while I did 2947| 2948| 2949|00:16:29.440 --> 00:16:31.430 align:start position:0% 2950|if you guys remember, even while I did 2951|the<00:16:29.680><c> original</c><00:16:30.000><c> CU</c><00:16:30.480><c> stuff</c><00:16:30.639><c> and</c><00:16:30.800><c> then</c><00:16:30.959><c> I</c><00:16:31.120><c> did</c><00:16:31.199><c> the</c> 2952| 2953|00:16:31.430 --> 00:16:31.440 align:start position:0% 2954|the original CU stuff and then I did the 2955| 2956| 2957|00:16:31.440 --> 00:16:33.749 align:start position:0% 2958|the original CU stuff and then I did the 2959|core<00:16:31.759><c> series</c><00:16:32.240><c> right</c><00:16:32.480><c> after,</c><00:16:33.279><c> I</c><00:16:33.519><c> was</c><00:16:33.600><c> like,</c> 2960| 2961|00:16:33.749 --> 00:16:33.759 align:start position:0% 2962|core series right after, I was like, 2963| 2964| 2965|00:16:33.759 --> 00:16:36.069 align:start position:0% 2966|core series right after, I was like, 2967|man,<00:16:34.000><c> I</c><00:16:34.160><c> wish</c><00:16:34.240><c> I</c><00:16:34.399><c> got</c><00:16:34.560><c> to</c><00:16:34.720><c> try</c><00:16:34.959><c> this</c><00:16:35.199><c> before</c><00:16:35.600><c> the</c> 2968| 2969|00:16:36.069 --> 00:16:36.079 align:start position:0% 2970|man, I wish I got to try this before the 2971| 2972| 2973|00:16:36.079 --> 00:16:38.629 align:start position:0% 2974|man, I wish I got to try this before the 2975|CU<00:16:36.959><c> because</c><00:16:37.199><c> I'm</c><00:16:37.440><c> always</c><00:16:37.680><c> a</c><00:16:37.920><c> bit</c><00:16:38.000><c> more</c><00:16:38.240><c> on</c><00:16:38.399><c> the</c> 2976| 2977|00:16:38.629 --> 00:16:38.639 align:start position:0% 2978|CU because I'm always a bit more on the 2979| 2980| 2981|00:16:38.639 --> 00:16:41.509 align:start position:0% 2982|CU because I'm always a bit more on the 2983|core<00:16:38.959><c> series</c><00:16:39.519><c> sound</c><00:16:39.839><c> signatures.</c><00:16:41.199><c> But</c><00:16:41.279><c> I</c> 2984| 2985|00:16:41.509 --> 00:16:41.519 align:start position:0% 2986|core series sound signatures. But I 2987| 2988| 2989|00:16:41.519 --> 00:16:43.110 align:start position:0% 2990|core series sound signatures. But I 2991|think<00:16:41.600><c> this</c><00:16:41.839><c> sound</c><00:16:42.079><c> signature</c><00:16:42.560><c> works</c><00:16:42.800><c> really</c> 2992| 2993|00:16:43.110 --> 00:16:43.120 align:start position:0% 2994|think this sound signature works really 2995| 2996| 2997|00:16:43.120 --> 00:16:45.670 align:start position:0% 2998|think this sound signature works really 2999|well<00:16:43.279><c> here.</c><00:16:44.320><c> I</c><00:16:44.639><c> really</c><00:16:44.959><c> do</c><00:16:45.199><c> think</c><00:16:45.279><c> it's</c><00:16:45.519><c> cuz</c> </file-view>
Video likely about building, not release. User probably expects the video to contain release/price details. The transcript says starts at 209, not above $299. Maybe earlier in transcript there's date? Let's search for "209" context, and maybe "for the price" or "at 209". Also parse start: "starts at 209". That's likely $209 USD. The question: "when the neo80 cu released, how much was it selling for?" The video at start mentions starts at 209. It doesn't state release date in transcript, but maybe the video title "Building The Neo80 Cu" is not release video. Could be a review/build. Maybe need find release date from web. But user says "i swear it released before that" after I gave Oct 2025. Then they sent YouTube link. Maybe they want me to watch the video to find the price and maybe date. We should summarize video and answer. But we also need resolve original question. Let's use the video transcript to answer price: starts at $209, no config above $299 (without extras). For release date, maybe the video doesn't say. However, maybe the video mentions "original CU stuff" then "core series right after". Not date. Let's read beginning more to see if any "group buy" or "pre-order" mention. Use read first 500 lines but extract plain text maybe. We can parse with Python to produce clean text and read chunks. But we can also read more of VTT around first 1000 lines. Use read with offset 470? Already read first 470. Continue 470-1000.
{
"file_path": "/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt",
"offset": 470,
"limit": 500
}<file-view path="/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt" start_line="470" end_line="952" total_lines="3112"> 470|And then we have the weight, which 471|waterfalls<00:02:16.080><c> I</c><00:02:16.319><c> guess</c><00:02:16.560><c> not</c><00:02:16.720><c> really</c><00:02:16.959><c> waterfalls</c> 472| 473|00:02:17.510 --> 00:02:17.520 align:start position:0% 474|waterfalls I guess not really waterfalls 475| 476| 477|00:02:17.520 --> 00:02:19.270 align:start position:0% 478|waterfalls I guess not really waterfalls 479|in<00:02:17.760><c> this</c><00:02:17.840><c> case,</c><00:02:18.080><c> but</c><00:02:18.480><c> it</c><00:02:18.720><c> almost</c><00:02:18.959><c> acts</c><00:02:19.200><c> like</c> 480| 481|00:02:19.270 --> 00:02:19.280 align:start position:0% 482|in this case, but it almost acts like 483| 484| 485|00:02:19.280 --> 00:02:21.670 align:start position:0% 486|in this case, but it almost acts like 487|the<00:02:19.440><c> little</c><00:02:19.599><c> Tolberone</c><00:02:20.319><c> kind</c><00:02:20.480><c> of</c><00:02:20.560><c> thing.</c> 488| 489|00:02:21.670 --> 00:02:21.680 align:start position:0% 490|the little Tolberone kind of thing. 491| 492| 493|00:02:21.680 --> 00:02:24.150 align:start position:0% 494|the little Tolberone kind of thing. 495|Here's<00:02:22.080><c> the</c><00:02:22.239><c> bottom.</c> 496| 497|00:02:24.150 --> 00:02:24.160 align:start position:0% 498|Here's the bottom. 499| 500| 501|00:02:24.160 --> 00:02:27.110 align:start position:0% 502|Here's the bottom. 503|My<00:02:24.480><c> camera</c><00:02:24.720><c> might</c><00:02:25.040><c> struggle</c><00:02:25.360><c> with</c><00:02:25.599><c> this.</c> 504| 505|00:02:27.110 --> 00:02:27.120 align:start position:0% 506|My camera might struggle with this. 507| 508| 509|00:02:27.120 --> 00:02:29.670 align:start position:0% 510|My camera might struggle with this. 511|Very,<00:02:27.680><c> very</c><00:02:28.080><c> cool.</c><00:02:28.640><c> I</c><00:02:28.959><c> think</c><00:02:29.040><c> there's</c><00:02:29.360><c> plastic</c> 512| 513|00:02:29.670 --> 00:02:29.680 align:start position:0% 514|Very, very cool. I think there's plastic 515| 516| 517|00:02:29.680 --> 00:02:34.710 align:start position:0% 518|Very, very cool. I think there's plastic 519|on<00:02:29.920><c> this.</c><00:02:30.800><c> Should</c><00:02:30.959><c> I</c><00:02:31.120><c> peel</c><00:02:31.360><c> this</c><00:02:31.520><c> off</c><00:02:31.760><c> now?</c> 520| 521|00:02:34.710 --> 00:02:34.720 align:start position:0% 522|on this. Should I peel this off now? 523| 524| 525|00:02:34.720 --> 00:02:37.390 align:start position:0% 526|on this. Should I peel this off now? 527|Ooh, 528| 529|00:02:37.390 --> 00:02:37.400 align:start position:0% 530|Ooh, 531| 532| 533|00:02:37.400 --> 00:02:39.509 align:start position:0% 534|Ooh, 535|[Music] 536| 537|00:02:39.509 --> 00:02:39.519 align:start position:0% 538|[Music] 539| 540| 541|00:02:39.519 --> 00:02:42.150 align:start position:0% 542|[Music] 543|that's<00:02:39.840><c> nice.</c> 544| 545|00:02:42.150 --> 00:02:42.160 align:start position:0% 546|that's nice. 547| 548| 549|00:02:42.160 --> 00:02:43.990 align:start position:0% 550|that's nice. 551|the<00:02:42.560><c> coating</c><00:02:42.879><c> on</c><00:02:43.040><c> this</c><00:02:43.280><c> minus</c><00:02:43.599><c> like</c><00:02:43.760><c> the</c><00:02:43.920><c> one</c> 552| 553|00:02:43.990 --> 00:02:44.000 align:start position:0% 554|the coating on this minus like the one 555| 556| 557|00:02:44.000 --> 00:02:45.670 align:start position:0% 558|the coating on this minus like the one 559|or<00:02:44.160><c> piece</c><00:02:44.400><c> two</c><00:02:44.640><c> pieces</c><00:02:44.879><c> of</c><00:02:45.040><c> dust</c><00:02:45.280><c> that</c><00:02:45.440><c> maybe</c> 560| 561|00:02:45.670 --> 00:02:45.680 align:start position:0% 562|or piece two pieces of dust that maybe 563| 564| 565|00:02:45.680 --> 00:02:47.990 align:start position:0% 566|or piece two pieces of dust that maybe 567|have<00:02:45.840><c> settled</c><00:02:46.080><c> in</c><00:02:46.239><c> it</c><00:02:46.400><c> already.</c> 568| 569|00:02:47.990 --> 00:02:48.000 align:start position:0% 570|have settled in it already. 571| 572| 573|00:02:48.000 --> 00:02:50.470 align:start position:0% 574|have settled in it already. 575|The<00:02:48.239><c> PVD</c><00:02:48.879><c> on</c><00:02:49.120><c> this</c><00:02:49.360><c> or</c><00:02:49.760><c> I'm</c><00:02:50.000><c> guessing</c><00:02:50.239><c> this</c><00:02:50.400><c> is</c> 576| 577|00:02:50.470 --> 00:02:50.480 align:start position:0% 578|The PVD on this or I'm guessing this is 579| 580| 581|00:02:50.480 --> 00:02:52.949 align:start position:0% 582|The PVD on this or I'm guessing this is 583|a<00:02:50.640><c> PVD.</c><00:02:51.040><c> I</c><00:02:51.120><c> don't</c><00:02:51.200><c> know</c><00:02:51.280><c> if</c><00:02:51.440><c> this</c><00:02:51.599><c> is</c><00:02:51.680><c> a</c><00:02:52.640><c> some</c> 584| 585|00:02:52.949 --> 00:02:52.959 align:start position:0% 586|a PVD. I don't know if this is a some 587| 588| 589|00:02:52.959 --> 00:02:55.509 align:start position:0% 590|a PVD. I don't know if this is a some 591|other<00:02:53.120><c> type</c><00:02:53.280><c> of</c><00:02:53.440><c> coating</c><00:02:53.840><c> on</c><00:02:54.000><c> this.</c><00:02:54.239><c> This</c><00:02:54.480><c> is</c> 592| 593|00:02:55.509 --> 00:02:55.519 align:start position:0% 594|other type of coating on this. This is 595| 596| 597|00:02:55.519 --> 00:02:59.990 align:start position:0% 598|other type of coating on this. This is 599|beautiful.<00:02:56.080><c> It</c><00:02:56.319><c> is</c><00:02:56.480><c> like</c><00:02:57.599><c> mirrored</c><00:02:58.080><c> finished.</c> 600| 601|00:02:59.990 --> 00:03:00.000 align:start position:0% 602|beautiful. It is like mirrored finished. 603| 604| 605|00:03:00.000 --> 00:03:01.830 align:start position:0% 606|beautiful. It is like mirrored finished. 607|So,<00:03:00.160><c> if</c><00:03:00.400><c> this</c><00:03:00.560><c> was</c><00:03:00.640><c> a</c><00:03:00.800><c> PBD,</c><00:03:01.280><c> again,</c><00:03:01.519><c> I'm</c><00:03:01.680><c> not</c> 608| 609|00:03:01.830 --> 00:03:01.840 align:start position:0% 610|So, if this was a PBD, again, I'm not 611| 612| 613|00:03:01.840 --> 00:03:04.229 align:start position:0% 614|So, if this was a PBD, again, I'm not 615|100%<00:03:02.400><c> positive</c><00:03:02.800><c> on</c><00:03:02.959><c> the</c><00:03:03.120><c> process</c><00:03:03.440><c> on</c><00:03:03.599><c> this,</c> 616| 617|00:03:04.229 --> 00:03:04.239 align:start position:0% 618|100% positive on the process on this, 619| 620| 621|00:03:04.239 --> 00:03:06.630 align:start position:0% 622|100% positive on the process on this, 623|but<00:03:04.480><c> there</c><00:03:04.720><c> is</c><00:03:04.879><c> no</c><00:03:05.120><c> rippling,</c><00:03:05.840><c> no</c><00:03:06.080><c> nothing.</c> 624| 625|00:03:06.630 --> 00:03:06.640 align:start position:0% 626|but there is no rippling, no nothing. 627| 628| 629|00:03:06.640 --> 00:03:08.470 align:start position:0% 630|but there is no rippling, no nothing. 631|This<00:03:06.879><c> is</c><00:03:07.040><c> as</c><00:03:07.360><c> clean</c><00:03:07.599><c> as</c><00:03:07.760><c> it</c><00:03:07.920><c> gets</c><00:03:08.159><c> for</c> 632| 633|00:03:08.470 --> 00:03:08.480 align:start position:0% 634|This is as clean as it gets for 635| 636| 637|00:03:08.480 --> 00:03:10.949 align:start position:0% 638|This is as clean as it gets for 639|reflections.<00:03:09.120><c> You</c><00:03:09.280><c> can</c><00:03:09.360><c> even</c><00:03:09.599><c> see</c><00:03:09.680><c> my</c><00:03:09.920><c> light.</c> 640| 641|00:03:10.949 --> 00:03:10.959 align:start position:0% 642|reflections. You can even see my light. 643| 644| 645|00:03:10.959 --> 00:03:12.550 align:start position:0% 646|reflections. You can even see my light. 647|Now,<00:03:11.200><c> I'm</c><00:03:11.440><c> curious</c><00:03:11.680><c> to</c><00:03:11.920><c> see</c><00:03:12.080><c> what</c><00:03:12.319><c> this</c> 648| 649|00:03:12.550 --> 00:03:12.560 align:start position:0% 650|Now, I'm curious to see what this 651| 652| 653|00:03:12.560 --> 00:03:16.070 align:start position:0% 654|Now, I'm curious to see what this 655|particular<00:03:13.280><c> cost</c><00:03:13.599><c> is</c><00:03:13.840><c> for</c><00:03:14.080><c> this</c><00:03:14.239><c> unit.</c> 656| 657|00:03:16.070 --> 00:03:16.080 align:start position:0% 658|particular cost is for this unit. 659| 660| 661|00:03:16.080 --> 00:03:19.910 align:start position:0% 662|particular cost is for this unit. 663|So,<00:03:16.480><c> right</c><00:03:16.640><c> away,</c><00:03:17.440><c> okay,</c><00:03:18.400><c> I</c><00:03:18.720><c> don't</c><00:03:19.440><c> I</c><00:03:19.760><c> don't</c> 664| 665|00:03:19.910 --> 00:03:19.920 align:start position:0% 666|So, right away, okay, I don't I don't 667| 668| 669|00:03:19.920 --> 00:03:22.070 align:start position:0% 670|So, right away, okay, I don't I don't 671|think<00:03:20.080><c> this</c><00:03:20.319><c> is</c><00:03:20.560><c> bad.</c><00:03:21.120><c> Would</c><00:03:21.280><c> have</c><00:03:21.440><c> I</c><00:03:21.840><c> would</c> 672| 673|00:03:22.070 --> 00:03:22.080 align:start position:0% 674|think this is bad. Would have I would 675| 676| 677|00:03:22.080 --> 00:03:23.670 align:start position:0% 678|think this is bad. Would have I would 679|have<00:03:22.159><c> I</c><00:03:22.480><c> liked</c><00:03:22.800><c> maybe</c><00:03:23.040><c> something</c><00:03:23.280><c> a</c><00:03:23.519><c> bit</c> 680| 681|00:03:23.670 --> 00:03:23.680 align:start position:0% 682|have I liked maybe something a bit 683| 684| 685|00:03:23.680 --> 00:03:26.149 align:start position:0% 686|have I liked maybe something a bit 687|bigger<00:03:24.239><c> for</c><00:03:24.560><c> sure,</c> 688| 689|00:03:26.149 --> 00:03:26.159 align:start position:0% 690|bigger for sure, 691| 692| 693|00:03:26.159 --> 00:03:27.990 align:start position:0% 694|bigger for sure, 695|but<00:03:26.319><c> I</c><00:03:26.560><c> really</c><00:03:26.800><c> don't</c><00:03:27.040><c> think</c><00:03:27.200><c> this</c><00:03:27.440><c> little</c> 696| 697|00:03:27.990 --> 00:03:28.000 align:start position:0% 698|but I really don't think this little 699| 700| 701|00:03:28.000 --> 00:03:30.149 align:start position:0% 702|but I really don't think this little 703|accent<00:03:28.640><c> badge</c><00:03:29.040><c> thing</c><00:03:29.280><c> is</c><00:03:29.440><c> all</c><00:03:29.680><c> that</c><00:03:29.840><c> bad.</c> 704| 705|00:03:30.149 --> 00:03:30.159 align:start position:0% 706|accent badge thing is all that bad. 707| 708| 709|00:03:30.159 --> 00:03:31.910 align:start position:0% 710|accent badge thing is all that bad. 711|Guys,<00:03:30.799><c> when</c><00:03:31.040><c> people</c><00:03:31.200><c> were</c><00:03:31.440><c> telling</c><00:03:31.599><c> me</c><00:03:31.760><c> about</c> 712| 713|00:03:31.910 --> 00:03:31.920 align:start position:0% 714|Guys, when people were telling me about 715| 716| 717|00:03:31.920 --> 00:03:33.350 align:start position:0% 718|Guys, when people were telling me about 719|this,<00:03:32.159><c> they</c><00:03:32.400><c> were</c><00:03:32.480><c> making</c><00:03:32.720><c> this</c><00:03:32.959><c> seem</c><00:03:33.120><c> like</c> 720| 721|00:03:33.350 --> 00:03:33.360 align:start position:0% 722|this, they were making this seem like 723| 724| 725|00:03:33.360 --> 00:03:35.509 align:start position:0% 726|this, they were making this seem like 727|the<00:03:33.519><c> devil</c><00:03:33.760><c> made</c><00:03:33.920><c> this,</c><00:03:34.239><c> bro.</c><00:03:34.480><c> They</c><00:03:34.720><c> were</c><00:03:34.879><c> like</c> 728| 729|00:03:35.509 --> 00:03:35.519 align:start position:0% 730|the devil made this, bro. They were like 731| 732| 733|00:03:35.519 --> 00:03:37.670 align:start position:0% 734|the devil made this, bro. They were like 735|telling<00:03:35.840><c> me</c><00:03:36.080><c> this</c><00:03:36.319><c> was</c><00:03:36.480><c> like</c><00:03:37.200><c> part</c><00:03:37.440><c> of</c><00:03:37.519><c> the</c> 736| 737|00:03:37.670 --> 00:03:37.680 align:start position:0% 738|telling me this was like part of the 739| 740| 741|00:03:37.680 --> 00:03:40.070 align:start position:0% 742|telling me this was like part of the 743|rapture<00:03:38.239><c> that</c><00:03:38.400><c> was</c><00:03:38.560><c> happening.</c> 744| 745|00:03:40.070 --> 00:03:40.080 align:start position:0% 746|rapture that was happening. 747| 748| 749|00:03:40.080 --> 00:03:42.149 align:start position:0% 750|rapture that was happening. 751|I<00:03:40.239><c> I</c><00:03:40.480><c> don't</c><00:03:40.640><c> mind</c><00:03:40.799><c> it.</c><00:03:41.280><c> Like</c><00:03:41.519><c> would</c><00:03:41.760><c> I</c><00:03:41.920><c> prefer</c> 752| 753|00:03:42.149 --> 00:03:42.159 align:start position:0% 754|I I don't mind it. Like would I prefer 755| 756| 757|00:03:42.159 --> 00:03:44.949 align:start position:0% 758|I I don't mind it. Like would I prefer 759|it<00:03:42.319><c> without</c><00:03:42.640><c> it?</c><00:03:42.959><c> Maybe</c><00:03:43.280><c> not.</c><00:03:44.080><c> It's</c><00:03:44.319><c> It's</c><00:03:44.720><c> not</c> 760| 761|00:03:44.949 --> 00:03:44.959 align:start position:0% 762|it without it? Maybe not. It's It's not 763| 764| 765|00:03:44.959 --> 00:03:48.309 align:start position:0% 766|it without it? Maybe not. It's It's not 767|that<00:03:45.280><c> bad.</c> 768| 769|00:03:48.309 --> 00:03:48.319 align:start position:0% 770| 771| 772| 773|00:03:48.319 --> 00:03:51.750 align:start position:0% 774| 775|So<00:03:49.280><c> thin</c><00:03:49.599><c> side</c><00:03:49.920><c> bezels,</c> 776| 777|00:03:51.750 --> 00:03:51.760 align:start position:0% 778|So thin side bezels, 779| 780| 781|00:03:51.760 --> 00:03:56.949 align:start position:0% 782|So thin side bezels, 783|bigger<00:03:52.159><c> top,</c><00:03:52.720><c> bigger</c><00:03:53.120><c> bottom,</c> 784| 785|00:03:56.949 --> 00:03:56.959 align:start position:0% 786| 787| 788| 789|00:03:56.959 --> 00:03:58.789 align:start position:0% 790| 791|hidden<00:03:57.439><c> screw</c><00:03:57.680><c> design</c><00:03:58.000><c> with</c><00:03:58.239><c> one,</c><00:03:58.560><c> two,</c> 792| 793|00:03:58.789 --> 00:03:58.799 align:start position:0% 794|hidden screw design with one, two, 795| 796| 797|00:03:58.799 --> 00:04:00.470 align:start position:0% 798|hidden screw design with one, two, 799|three, 800| 801|00:04:00.470 --> 00:04:00.480 align:start position:0% 802|three, 803| 804| 805|00:04:00.480 --> 00:04:06.229 align:start position:0% 806|three, 807|four,<00:04:00.799><c> five,</c><00:04:01.200><c> six</c><00:04:01.439><c> screws.</c><00:04:02.640><c> Okay.</c><00:04:04.000><c> All</c><00:04:04.159><c> right.</c> 808| 809|00:04:06.229 --> 00:04:06.239 align:start position:0% 810|four, five, six screws. Okay. All right. 811| 812| 813|00:04:06.239 --> 00:04:08.869 align:start position:0% 814|four, five, six screws. Okay. All right. 815|I<00:04:06.480><c> would</c><00:04:06.560><c> say</c><00:04:06.720><c> this</c><00:04:06.879><c> is</c><00:04:07.040><c> a</c><00:04:07.200><c> very</c><00:04:07.439><c> classic</c><00:04:08.560><c> top</c> 816| 817|00:04:08.869 --> 00:04:08.879 align:start position:0% 818|I would say this is a very classic top 819| 820| 821|00:04:08.879 --> 00:04:10.710 align:start position:0% 822|I would say this is a very classic top 823|shape.<00:04:09.439><c> There's</c><00:04:09.760><c> nothing</c><00:04:09.920><c> really</c><00:04:10.159><c> crazy.</c><00:04:10.560><c> It</c> 824| 825|00:04:10.710 --> 00:04:10.720 align:start position:0% 826|shape. There's nothing really crazy. It 827| 828| 829|00:04:10.720 --> 00:04:12.789 align:start position:0% 830|shape. There's nothing really crazy. It 831|doesn't<00:04:10.879><c> like</c><00:04:11.040><c> protrude</c><00:04:11.519><c> outwards</c><00:04:12.000><c> anywhere.</c> 832| 833|00:04:12.789 --> 00:04:12.799 align:start position:0% 834|doesn't like protrude outwards anywhere. 835| 836| 837|00:04:12.799 --> 00:04:14.550 align:start position:0% 838|doesn't like protrude outwards anywhere. 839|It's<00:04:13.120><c> nice.</c><00:04:13.360><c> I</c><00:04:13.599><c> think</c><00:04:13.680><c> the</c><00:04:13.920><c> selling</c><00:04:14.159><c> point</c><00:04:14.319><c> for</c> 840| 841|00:04:14.550 --> 00:04:14.560 align:start position:0% 842|It's nice. I think the selling point for 843| 844| 845|00:04:14.560 --> 00:04:17.909 align:start position:0% 846|It's nice. I think the selling point for 847|me<00:04:14.640><c> is</c><00:04:14.879><c> this</c><00:04:16.000><c> giant,</c> 848| 849|00:04:17.909 --> 00:04:17.919 align:start position:0% 850|me is this giant, 851| 852| 853|00:04:17.919 --> 00:04:20.710 align:start position:0% 854|me is this giant, 855|really<00:04:18.239><c> nicely</c><00:04:18.560><c> done</c><00:04:19.600><c> back</c><00:04:19.840><c> piece</c><00:04:20.160><c> over</c><00:04:20.400><c> here.</c> 856| 857|00:04:20.710 --> 00:04:20.720 align:start position:0% 858|really nicely done back piece over here. 859| 860| 861|00:04:20.720 --> 00:04:22.390 align:start position:0% 862|really nicely done back piece over here. 863|I<00:04:20.959><c> really</c><00:04:21.199><c> like</c><00:04:21.359><c> the</c><00:04:21.600><c> shape</c><00:04:21.759><c> of</c><00:04:21.919><c> this,</c><00:04:22.079><c> too.</c><00:04:22.240><c> I</c> 864| 865|00:04:22.390 --> 00:04:22.400 align:start position:0% 866|I really like the shape of this, too. I 867| 868| 869|00:04:22.400 --> 00:04:23.990 align:start position:0% 870|I really like the shape of this, too. I 871|like<00:04:22.479><c> how</c><00:04:22.639><c> it</c><00:04:22.800><c> cuts</c><00:04:23.040><c> into</c><00:04:23.199><c> the</c><00:04:23.440><c> board.</c><00:04:23.759><c> I</c> 872| 873|00:04:23.990 --> 00:04:24.000 align:start position:0% 874|like how it cuts into the board. I 875| 876| 877|00:04:24.000 --> 00:04:25.749 align:start position:0% 878|like how it cuts into the board. I 879|really<00:04:24.240><c> like</c><00:04:24.400><c> how</c><00:04:24.560><c> this</c><00:04:24.720><c> tapers</c><00:04:25.120><c> inwards</c><00:04:25.520><c> as</c> 880| 881|00:04:25.749 --> 00:04:25.759 align:start position:0% 882|really like how this tapers inwards as 883| 884| 885|00:04:25.759 --> 00:04:28.150 align:start position:0% 886|really like how this tapers inwards as 887|well.<00:04:26.639><c> Wonderful</c><00:04:27.040><c> job</c><00:04:27.280><c> on</c><00:04:27.440><c> the</c><00:04:27.600><c> side</c><00:04:27.759><c> profile</c> 888| 889|00:04:28.150 --> 00:04:28.160 align:start position:0% 890|well. Wonderful job on the side profile 891| 892| 893|00:04:28.160 --> 00:04:29.670 align:start position:0% 894|well. Wonderful job on the side profile 895|and<00:04:28.320><c> how</c><00:04:28.479><c> it</c><00:04:28.639><c> kind</c><00:04:28.800><c> of</c><00:04:28.880><c> blends</c><00:04:29.280><c> into</c><00:04:29.520><c> the</c> 896| 897|00:04:29.670 --> 00:04:29.680 align:start position:0% 898|and how it kind of blends into the 899| 900| 901|00:04:29.680 --> 00:04:32.870 align:start position:0% 902|and how it kind of blends into the 903|bottom<00:04:30.000><c> and</c><00:04:30.240><c> even</c><00:04:30.560><c> back.</c><00:04:31.520><c> The</c><00:04:31.840><c> one</c><00:04:32.160><c> thing</c><00:04:32.400><c> I</c><00:04:32.720><c> am</c> 904| 905|00:04:32.870 --> 00:04:32.880 align:start position:0% 906|bottom and even back. The one thing I am 907| 908| 909|00:04:32.880 --> 00:04:35.749 align:start position:0% 910|bottom and even back. The one thing I am 911|still<00:04:33.040><c> not</c><00:04:33.360><c> 100%</c><00:04:34.080><c> sold</c><00:04:34.400><c> on</c><00:04:34.720><c> though,</c><00:04:35.520><c> the</c> 912| 913|00:04:35.749 --> 00:04:35.759 align:start position:0% 914|still not 100% sold on though, the 915| 916| 917|00:04:35.759 --> 00:04:38.310 align:start position:0% 918|still not 100% sold on though, the 919|compass.<00:04:36.639><c> I</c><00:04:36.800><c> guess</c><00:04:36.960><c> I'm</c><00:04:37.120><c> just</c><00:04:37.280><c> not</c><00:04:37.440><c> 100.</c><00:04:37.919><c> I</c><00:04:38.080><c> I</c> 920| 921|00:04:38.310 --> 00:04:38.320 align:start position:0% 922|compass. I guess I'm just not 100. I I 923| 924| 925|00:04:38.320 --> 00:04:40.629 align:start position:0% 926|compass. I guess I'm just not 100. I I 927|just<00:04:38.560><c> I</c><00:04:38.800><c> just</c><00:04:38.960><c> maybe</c><00:04:39.280><c> don't</c><00:04:39.520><c> love</c><00:04:40.080><c> it.</c><00:04:40.320><c> It's</c> 928| 929|00:04:40.629 --> 00:04:40.639 align:start position:0% 930|just I just maybe don't love it. It's 931| 932| 933|00:04:40.639 --> 00:04:43.270 align:start position:0% 934|just I just maybe don't love it. It's 935|actually<00:04:40.880><c> not</c><00:04:41.040><c> as</c><00:04:41.280><c> bad</c><00:04:41.600><c> on</c><00:04:42.000><c> this</c><00:04:42.320><c> board.</c><00:04:43.040><c> I'm</c> 936| 937|00:04:43.270 --> 00:04:43.280 align:start position:0% 938|actually not as bad on this board. I'm 939| 940| 941|00:04:43.280 --> 00:04:45.590 align:start position:0% 942|actually not as bad on this board. I'm 943|not<00:04:43.520><c> sold</c><00:04:43.840><c> on</c><00:04:44.000><c> the</c><00:04:44.160><c> compass.</c><00:04:44.880><c> Cool</c><00:04:45.199><c> though.</c> 944| 945|00:04:45.590 --> 00:04:45.600 align:start position:0% 946|not sold on the compass. Cool though. 947| 948| 949|00:04:45.600 --> 00:04:47.430 align:start position:0% 950|not sold on the compass. Cool though. 951|Very<00:04:45.919><c> very</c><00:04:46.160><c> cool.</c><00:04:46.560><c> So,</c><00:04:46.720><c> let's</c><00:04:46.960><c> take</c><00:04:47.120><c> a</c><00:04:47.280><c> look</c> </file-view>
The video is a build/review not focused on release date. But it says starts at 209. Need answer user: maybe the video provides price and release date from title or description? The video title "Building The Neo80 Cu" maybe channel is 'Keybored' etc. We can maybe fetch YouTube page metadata? Already have transcript. Could also use yt-dlp to get upload date. Let's get video info with yt-dlp --dump-json.
{
"command": "yt-dlp --no-update --dump-json --skip-download \"https://www.youtube.com/watch?v=utf3wmYr-qo&pp=ygUHbmVvODBjdQ%3D%3D\" | head -n 100"
}Output from command in shell c6c4d5:
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] utf3wmYr-qo: 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
{"id": "utf3wmYr-qo", "title": "Building The Neo80 Cu", "formats": [{"format_id": "sb3", "format_note": "storyboard", "ext": "mhtml", "protocol": "mhtml", "acodec": "none", "vcodec": "none", "url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L0/default.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCzz7x1Q52-ay3He7fPX_-ezWZiFw", "width": 48, "height": 27, "fps": 0.09671179883945841, "rows": 10, "columns": 10, "fragments": [{"url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L0/default.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCzz7x1Q52-ay3He7fPX_-ezWZiFw", "duration": 1034.0}], "audio_ext": "none", "video_ext": "none", "vbr": 0, "abr": 0, "tbr": null, "resolution": "48x27", "aspect_ratio": 1.78, "filesize_approx": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "format": "sb3 - 48x27 (storyboard)"}, {"format_id": "sb2", "format_note": "storyboard", "ext": "mhtml", "protocol": "mhtml", "acodec": "none", "vcodec": "none", "url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L1/M$M.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCnYGwsZ0Te6ey8TB9FAfnsVe459A", "width": 80, "height": 45, "fps": 0.10154738878143134, "rows": 10, "columns": 10, "fragments": [{"url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L1/M0.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCnYGwsZ0Te6ey8TB9FAfnsVe459A", "duration": 984.7619047619047}, {"url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L1/M1.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCnYGwsZ0Te6ey8TB9FAfnsVe459A", "duration": 49.2380952380953}], "audio_ext": "none", "video_ext": "none", "vbr": 0, "abr": 0, "tbr": null, "resolution": "80x45", "aspect_ratio": 1.78, "fil… (544311 chars truncated)
Exit code: 0The dump is huge. We need extract upload_date and maybe description. Use jq or grep.
{
"command": "yt-dlp --no-update --dump-json --skip-download \"https://www.youtube.com/watch?v=utf3wmYr-qo&pp=ygUHbmVvODBjdQ%3D%3D\" | python3 -c \"import sys,json; d=json.load(sys.stdin); print('upload_date:', d.get('upload_date')); print('channel:', d.get('channel')); print('title:', d.get('title')); print('desc:', d.get('description','')[:2000])\""
}Output from command in shell f28e72: WARNING: [youtube] utf3wmYr-qo: Some tv client https formats have been skipped as they are missing a url. YouTube may have enabled the SABR-only or Server-Side Ad Placement experiment for the current session. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details 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] utf3wmYr-qo: 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 WARNING: [youtube] utf3wmYr-qo: Some web client https formats have been skipped as they are missing a url. YouTube is forcing SABR streaming for this client. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details upload_date: 20251013 channel: alexotos title: Building The Neo80 Cu desc: Keyboard Kit — Neo80 CU https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard?sca_ref=7821338.bMXYsBW0GgMRNR — Switches \\ MX2A Cherry Black Switches https://divinikey.com/products/cherry-mx2a-black-linear-switches?ref=oScu8BXzF73dpE — Keycaps \\ GMK Dandy Note: Some of these are affiliate links and i get a kick back! They help support my channel. This is a sponsored review, but all opinions shared are entirely my own and remain unbiased. LEARN HERE: ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ How to Lube Stabs — https://www.youtube.com/watch?v=vxHb6CJc9V8 How to Lube Switches — https://www.youtube.com/watch?v=88tnUYbxaIs Find me live here: https://www.twitch.tv/alexotos MY STUFF: ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ 📷 My Streaming Gear: https://kit.co/alexotos/streaming-gear 👕 Merch: https://shop.alexotos.com/ ➡️ My Building Equipment: https://kit.co/alexotos/building-equipment ➡️ What I use for keycap storage: https://amzn.to/3fGvdZq SPONSORS / AFFILIATE LINKS ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ https://kineticlabs.store/alexotos https://bowlkeyboards.com/ https://kibou.store/alexotos https://kbdfans.com/r?id=meguep https://omnitype.com/alexotos https://modedesigns.com/alexotos https://unikeyboards.com/?sca_ref=5348849.iPIMLKwswJ https://whiplashdesign.eu/ https://www.deskhero.ca?aff=8 COME HANGOUT ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ Discord: https://discord.gg/alexotos SOCIALS! ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ https://www.alexotos.com https://www.instagram.com/alexotos https://twitter.com/otosalex https://www.twitch.tv/alexotos Exit code: 0
Video upload date 2025-10-13. That's after the October 2025 group buy? Actually 2025 Oct 13. So video is around release time. The Qwertykeys product page currently lists price adjustment July 1st; but video from Oct 2025 says starts at 209 and no iteration above $299 (unless extras). Current Qwertykeys price $259.99. So the video likely captures original launch price: starts at $209, max $299. Need determine exact release date. The video upload date 2025-10-13. The Pantheonkeys group buy period 10 Oct - 10 Nov 2025. Rebult pre-order 11 Oct - 23 Oct 2025. So original release likely around October 10-11, 2025. The user swears released before that — maybe they are mistaken? Wait there is also Batch 2 Jan 2025? Could be previous batch? But video upload 2025 Oct 13 suggests this is the launch period. Could there have been an earlier release in 2024? The video from alexotos likely a sponsored build for the launch. Hmm. But the user earlier said "i swear it released before that" in response to my first answer which gave Oct 2025. They then sent the video link. Maybe they want me to use the video to confirm. The video transcript at 0:13 says "starts at 209". It doesn't mention release date. But video upload date is 2025-10-13. Also we can infer group buy was around Oct 10 2025. But the user thinks it released before Oct 2025? Maybe not. Let's ask? But maybe the video release date is actually 2025? The user's link maybe has pp= query; it's a search result link. We need answer the user's question: "search the web, when the neo80 cu released, how much was it selling for?" Then they provided video. So we should combine web search and video transcript. Since video is from alexotos (upload 2025-10-13) and says starts at $209. Web search shows current $259.99, with price adjustment July 1st. But original launch price likely $209 as per video. But also the video might mention "starts at 209" in context of original Neo80 Cu starting price. Need maybe identify config he built and its cost. At 03:12 he asks "what this particular cost is for this unit". Did he mention price later? Let's search for "cost" or "dollar" or "$".
{
"pattern": "(cost|price|\\$|dollar|USD|quid|bucks)",
"path": "/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt",
"case_insensitive": true,
"output_mode": "content",
"max_results": 50,
"context_lines": 2
}Found 6 match(es) for pattern '(cost|price|\$|dollar|USD|quid|bucks)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 6 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 653|00:03:12.560 --> 00:03:16.070 align:start position:0% 654|Now, I'm curious to see what this > 655|particular<00:03:13.280><c> cost</c><00:03:13.599><c> is</c><00:03:13.840><c> for</c><00:03:14.080><c> this</c><00:03:14.239><c> unit.</c> 656| 657|00:03:16.070 --> 00:03:16.080 align:start position:0% > 658|particular cost is for this unit. 659| 660| 661|00:03:16.080 --> 00:03:19.910 align:start position:0% > 662|particular cost is for this unit. 663|So,<00:03:16.480><c> right</c><00:03:16.640><c> away,</c><00:03:17.440><c> okay,</c><00:03:18.400><c> I</c><00:03:18.720><c> don't</c><00:03:19.440><c> I</c><00:03:19.760><c> don't</c> 664| ... 2869|00:16:08.079 --> 00:16:11.189 align:start position:0% 2870|and there's not a single iteration of >2871|this<00:16:08.399><c> that</c><00:16:08.720><c> goes</c><00:16:08.959><c> above</c><00:16:09.440><c> $299</c> 2872| 2873|00:16:11.189 --> 00:16:11.199 align:start position:0% >2874|this that goes above $299 2875| 2876| 2877|00:16:11.199 --> 00:16:13.110 align:start position:0% >2878|this that goes above $299 2879|unless<00:16:11.519><c> you're</c><00:16:11.680><c> getting</c><00:16:11.839><c> extra</c><00:16:12.160><c> pieces.</c> 2880|
Only 209 start and 299 max. Also "starts at 209" at 0:13. So price info from video. Release date not in transcript. But video upload date 2025-10-13. And group buy period 10 Oct - 10 Nov 2025. So release date ~ Oct 10 2025. But user said "i swear it released before that". We need address that with evidence. Could it be that the video is from Oct 2025 but the product actually had Batch 1 earlier? Let's search web for "Neo80 Cu Batch 1" maybe not obvious. The video description links to Qwertykeys product page with sca_ref affiliate. The current product page price is $259.99 and says price adjustment July 1st. Hmm. If current date is July 2026, price adjustment happened July 2026? But the video from Oct 2025 says starts at 209, meaning original price. That matches. But there might be a Neo80 Cu "Batch 2" in Jan 2025? Wait the UniKeys Batch 2 page was Jan 2025. Could that be a mislabel? Maybe Batch 2 of a different Neo80 (not Cu) or maybe the product page is outdated. The dates are in 2025. Actually today is 2026-07-16, so these pages with Jan/Oct 2025 are historical. The current Qwertykeys page still lists Neo80 Cu price $259.99. Let's try to find original group buy announcement date for Neo80 Cu from Qwertykeys maybe via their Discord or notion. Search "Neo80 Cu announcement October 2025".
{
"query": "\"Neo80 Cu\" \"October 2025\" \"Qwertykeys\" announcement"
}# Web Search Results for ""Neo80 Cu" "October 2025" "Qwertykeys" announcement" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... Canada: Unikeys, Keybay and deskhero.ca ... Oct 10th) ... later as QK)Korea ... day later as QK) ... ): KeebzNC ... , BerserKeys and Gara Studio (same day or ... day later as ... QK AustraliaSingapore and Pakistan: ... op, Ktechs, Pantheon ... Coffeekeys, Eloquent, Delta and Keygem(same day or a day later ... : Protot ... Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... ## Neo80 Cu ... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... Despite its large 80% layout, we've maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Neo80 ... Not only are we bringing back the fan-favorite Teal from the Neo series, but we’re also introducing a stunning lineup of fresh colors — Slate Blue, Taupe Grey, Dusty Rose, Jade, and Ruby Rose, giving you even more ways to make your keyboard truly yours. ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ## 2. [GB] Neo80 CU by Qwertykeys – pantheonkeys URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys [GB] Neo80 CU by Qwertykeys – pantheonkeys ... ## [GB] Neo80 CU by Qwertykeys ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026 ## 3. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard Qwertykeys Neo80 Cu Keyboard – Divinikey ... # Qwertykeys Neo80 Cu Keyboard ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Qwertykeys Neo80 Cu Keyboard Features: ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ... ## Neo80 Cu ... Built around the beloved 80% layout, this keyboard is a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... ## Full Copper & Brass Bottom ... Despite its large 80% layout, Neoworks has maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Like most Neo keyboards, the bottom case features a partitioned acoustic chamber to minimize hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without any foam. ... Poron Gasket structure has been integrated into the Neo80 Cu. Unlike traditional Poron Gaskets that require gluing to the case, the Neo80 Cu was designed with special grooves in the bottom case to securely hold the Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional durability over time. Silicone gasket mount structure is also retained, as an alternative option for those who prefer it. ... ## Plate F... ## 4. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 5. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... The Neo80 Cu is built around the beloved 80% layout, a proven favourite among professionals and enthusiasts who prioritise efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... Full Copper & ... Despite its large 80% layout, we've maintained the Cu series' signature all-copper bottom design, bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Like most Neo keyboards, the bottom case features a partitioned acoustic chamber to minimise hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and, combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without the use of foam. ... Inspired by massive celestial bodies, whose gravity warps surrounding space, the Neo80 Cu's top case features a multi-layered "star ring" light that captures the brilliance of a planet against the dark night sky.The central "planet" features a triple-etched aluminium finish, surrounded by a mirrored stainless-steel ring, creating a striking "floating planet" effect. ... On the back, the intersection of the weight and the bottom case features a carefully sculpted slope that softens transitions. The compass-inspired Cu series logo sits in the centre, showcasing the iconic symbolism of the Neo brand. ... We've integrated the Poron Gasket structure into the Neo80 Cu. Unlike traditional Poron Gaskets that require gluing to the case, we've designed special grooves in the bottom case to securely hold the Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional durability over time. Of course, we've also retained the silicone gasket mount structure as an alternative option fo...
Qwertykeys page mentions "Oct 10th" in regional vendors. That is likely the original release date (Oct 10, 2025). The video uploaded Oct 13 2025. So original release Oct 10 2025. Price starts at $209, max $299 (without extras). Current price $259.99 with price adjustments. But the user's "i swear it released before that" may refer to a previous batch? There is Batch 2 in Jan 2025 from UniKeys. But that contradicts Oct 2025 release. Could UniKeys Batch 2 be for the regular Neo80? No, title clearly Neo80 Cu. Maybe the dates on UniKeys are wrong/placeholder? Let's verify by checking Wayback or other sources. The user likely saw the video from alexotos (Oct 2025) and knows it was released before that? Hmm. The video title says "Building The Neo80 Cu" and upload 20251013. Could be that the board released earlier (like June 2025) and the video is a build after. But group buy period in Oct 2025. Let's search for "Neo80 Cu shipping complete Batch 2" from Deskhero. It says "Neo80 Cu Keyboard Batch 2 | Shipping complete." That batch 2 likely the Jan 2025 one? But shipping complete status from Deskhero. Maybe there was a Batch 1 before Jan 2025? Let's explore Deskhero group buy updates for Neo80 Cu batch 1.
{
"url": "https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504"
}# Web Content from https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504 [[Deskhero Inc logo]][1] [[Deskhero Inc logo]][2] [English (US)] English (US) [All articles][3] [Group Buy Shipping Updates][4] Group Buy Keyboard Updates Search All articles # Group Buy Keyboard UpdatesUpdated 3 days ago View: * [Group Buy Keysets][5] * [Group Buy Deskmats][6] * [Group Buy Accessories][7] ───────────────────────────┬──────────────────────────────────────────────────────────────────────── **Product Name** │**Status / Notes** ───────────────────────────┼──────────────────────────────────────────────────────────────────────── **Zoom64 Keyboard** │Shipping complete ───────────────────────────┼──────────────────────────────────────────────────────────────────────── **ND104 Keyboards** │Estimated shipping July ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bauer Lite 65% Keyboard │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Boog75 Keyboard │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bridge 75 Keyboard Batch 1 │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bridge 75 Keyboard Batch 2 │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bridge 75 Keyboard March │Shipping complete. Batch /Batch 3 │ ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bridge75 Keyboard July │Shipping complete. Batch │ ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bridge75 October Batch │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bridge 75 Plus Pre-order │Shipping complete. Keyboard │ ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bubble 75 │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Bulwark TKL │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Choice 65 Keyboard │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── CKW80 Keyboard │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Class65 V3 Keyboards │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Cloudline Mechanical │Shipping complete. Build Guide: Keyboard │https://jjwkb.com/pages/cloudline-assembly ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Crin Mechanical Keyboard │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Crush80 Keyboard │Shipping complete. ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Crush80 Keyboard March │Shipping complete. Batch │ ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Cyberpunk BOX60 Keyboard │Shipping complete. Case and Stand │ ───────────────────────────┼──────────────────────────────────────────────────────────────────────── Derivative R1 Keyboard │Shipping complete. ───────────────────────────┼───… (207 chars truncated) … (199 lines truncated) <truncation_notice> Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/14c36ad4/content.txt </truncation_notice>
Need search within that file for Neo80 Cu.
{
"pattern": "Neo80 Cu",
"path": "/var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/14c36ad4/content.txt",
"case_insensitive": true,
"output_mode": "content",
"max_results": 20,
"context_lines": 1
}Found 1 match(es) for pattern 'Neo80 Cu' in /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/14c36ad4/content.txt: -- 1 matches in /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/14c36ad4/content.txt 180|───────────────────────────┼──────────────────────────────────────────────────────────────────────── >181|Neo80 Cu Keyboard Batch 2 │Shipping complete. 182|───────────────────────────┼────────────────────────────────────────────────────────────────────────
No Batch 1. So likely first batch Jan 2025? But the video from Oct 2025 says "starts at 209" and the Qwertykeys page has Oct 10th release. Could the UniKeys "Batch 2" Jan 2025 be an error or referring to Neo80 (non-Cu)? Wait title "Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order" with pre-order Jan 13 2025. If that's batch 2, batch 1 must be before Jan 2025, maybe in 2024. But no evidence. However, the video from alexotos is 2025-10-13, so after Jan 2025. Could there have been a first batch that already shipped (Batch 1) and this is a re-run? The Deskhero update says Batch 2 shipping complete, and maybe Batch 1 shipping complete earlier. Hmm. Let's search more broadly: "Neo80 Cu batch 1 shipping complete"
{
"query": "\"Neo80 Cu\" \"Batch 1\" \"shipping\" OR \"shipped\""
}# Web Search Results for ""Neo80 Cu" "Batch 1" "shipping" OR "shipped"" ## 1. Group Buy Keyboard Updates URL: https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504 | Neo75 Keyboard | Estimated shipping end of Q1, 2026 | | Neo80 Cu Keyboard Batch 2 | Shipping complete. | | Neo98 Keyboard | Estimated shipping end of Q1, 2026 | ## 2. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order - JOIN OUR DISCORD COMMUNITY! - For UK Customers: $10 USD (VAT not included) flat rate shipping for order value under $155 USD ... # Neo80 ... Custom Mechanical Keyboard BATCH 2 Pre-Order ... Shipping calculated at checkout. ... Out of stock ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ... #### Free shipping is not eligible for this product ## 3. Qwertykeys Neo80 Cu Keyboard – Divinikey URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard We ship from Southern California! No tariffs after checkout. ... ## Free US Shipping $99+ ... Estimated Ship Time: 12 Weeks ... ## Shipping Information ... All items are shipped from our facility in Southern California, US. No additional custom fees or tariffs will be charged once checked out. ... Estimated Ship Date: 12 weeks after ordering ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ... Made to order items may be ordered with in-stock items. The order will be shipped out once the preorder item arrives in our facility. ## 4. (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-batch-10 This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... Expected Shipping time: late Q3 2026 ... ##### Shipping Time and GB Agreements (PLEASE READ): ... Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ... These products are set to be shipped out at the date specified above, but please check our updates for the latest information. ## 5. Neo65 – Qwertykeys URL: https://www.qwertykeys.com/en-nz/products/neo65-1 acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... 1. If you need to ship to a different address, please place an order using a different account. Otherwise, the system may automatically combine your orders and ship them to the same address. 2. All products on this page are final sale items. Once an order is placed, no changes or cancellations will be accepted ... Free Shipping with Your Keyboard ... Estimated Fulfillment Time: 4 weeks ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ... #### Estimated Fulfillment time: 4 weeks ... We'll lock orders for fulfilment every 7 days. For example, orders placed between Aug. 30th and Sep. 5th will be locked for fulfilment on Sep. 6th as a batch. We expect to fulfill all orders of each batch within 2-4 weeks after each batch ends. The actual timing is subject to change based on the total units sold. ... Please use different accounts if you have multiple orders shipped to different locations. Our logistic system automatically combines all orders under the same account and ships them to the same destination. This helps consolidate extra parts orders and allows you to take advantage of free shipping. ... Shipping was incredibly fast, arriving even earlier than expected. The packaging was secure, ensuring everything arrived in perfect condition.
Wait Prototypist has "Batch 10" with pre-order ending 10 April 2026. That suggests many batches. So Neo80 Cu has been released in multiple batches over time, starting likely earlier. The Batch 10 pre-order ends April 2026. The "Batch 2" Jan 2025 is plausible second batch; Batch 1 likely 2024. The user might be right. Need find Batch 1 date. Search Prototypist for earlier batches: "neo80-cu-keyboard-kit-batch-1" etc.
{
"query": "site:prototypist.net \"neo80-cu\" \"batch\""
}# Web Search Results for "site:prototypist.net "neo80-cu" "batch"" ## 1. (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-batch-10 (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... # (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... ##### This Group Buy has ended and can no longer be ordered. Try searching Pre-Orders or our In Stock range. ... £158.33 ... This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... - Typing angle: 8 degree - Front height: 18 mm - Size: 80% TKL, 355.5mm x 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ## 2. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below ... be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range ... Please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... At its core, the Neo80 Cu features a distinctive solid ... bottom case that delivers both striking visual appeal and substantial, satisfying weight. This ... not only looks premium but ... acoustic base for a crisp, pure ... Beyond aesthetics, the stainless steel weight combined with the copper bottom case brings the Neo80 Cu to ... 4.5kg ... This substantial heft ... stability and provides a solid ... and clean sound profile ... minimal vibration. ... While the Neo80 Cu delivers satisfying typing sound without any foam, every unit includes a complete acoustic package with Poron PCB foam, a PE sheet, and case foam. You can either maintain the signature "no-foam" sound or customize your acoustic experience, this kit gives you full control over your keyboard’s sound profile. ... - Typing angle: 8 degree - Front height: 18 mm - Size: 80% TKL, 355.5mm x 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ... Shipping Time and GB Agreement... ## 3. (Pre-Order) Neo80 Cu Keyboard Kit Addons Batch 10 URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-addons-batch-10 (Pre-Order) Neo80 Cu Keyboard Kit Addons Batch 10 ... # (Pre-Order) Neo80 Cu Keyboard Kit Addons Batch 10 ... ##### This Group Buy has ended ... can no longer be ordered ... Try searching Pre-Orders or our In Stock range. ... Addons: Alu Plate ... £15.00 ... This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... At its core, the Neo80 Cu features a distinctive solid copper bottom case that delivers both striking visual appeal and substantial, satisfying weight. This foundation not only looks premium but also creates the ideal acoustic base for a crisp, pure typing sound. ... Addons Available: ... - ALU - PP - CF - PEI - Glossy Chamfer ALU ... - Solder - Wired ANSI Hotswap - Tri-Mode ANSI Hotswap - Tri-Mode ISO Hotswap ## 4. (Pre-Order) Neo80 Cu Keyboard Kit Addons URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-addons (Pre-Order) Neo80 Cu Keyboard Kit Addons ... # (Pre-Order) Neo80 Cu Keyboard Kit Addons ... Addons: Alu Plate ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. Order soon as inventory in Pre-Order is discounted from full retail price and sells quickly!Please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... At its core, the Neo80 Cu features a distinctive solid copper bottom case that delivers both striking visual appeal and substantial, satisfying weight. This foundation not only looks premium but also creates the ideal acoustic base for a crisp, pure typing sound. ... Addons Available: ... - ALU - PP - CF - PEI - Glossy Chamfer ALU ... - Solder - Wired ANSI Hotswap - Tri-Mode ANSI Hotswap - Tri-Mode ISO Hotswap ## 5. (Pre Order) Neo80 Keyboard Kit Batch 8 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-batch-8 (Pre Order) Neo80 Keyboard Kit Batch 8 ... # (Pre Order) Neo80 Keyboard Kit Batch 8 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Neo80 Addons Available Here
Prototypist has Neo80 (non-Cu) Batch 8, Neo80 Cu Batch 10 and main. Batches refer to monthly drops for Neo80. For Cu version, Batch 10 ending April 2026, main pre-order ending Nov 2025. There may be earlier batches. Need find first release. Maybe Prototypist product listings for Cu batch 1? Search "pre-order-neo80-cu-keyboard-kit-batch-1".
{
"query": "site:prototypist.net \"pre-order-neo80-cu-keyboard-kit-batch-1\""
}# Web Search Results for "site:prototypist.net "pre-order-neo80-cu-keyboard-kit-batch-1"" ## 1. (Pre Order) Neo80 Keyboard Kit Batch 1 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-batch-1 (Pre Order) Neo80 Keyboard Kit Batch 1 ... # (Pre Order) Neo80 Keyboard Kit Batch 1 ... £89.17 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Closes January 31st 2025 ... Expected to ship Q2 2025 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... - with stainless steel weight: 1.7KG before assembly, 2.2kg after assembly ... - with copper weight: 1.72kg before assembly, 2.22kg after assembly ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2025 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. If your extra cost items are not billed at checkout you will receive an invoice for them once the pre-order window closes. Only the items specified in each product picture are included with that particular product. ... Shippi... ## 2. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... £158.33 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... - Typing angle: 8 degree - Front height: 18 mm - Size: 80% TKL, 355.5mm x 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ... - PCB of your choice ... - 1x PE sheet ... - 1x PCB foam ... - Tri-mode PCB comes with a 2 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on the... ## 3. (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-batch-10 (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... # (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... ##### This Group Buy has ended and can no longer be ordered. Try searching Pre-Orders or our In Stock range. ... £158.33 ... This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... Expected Shipping time: late Q3 2026 ... - Typing angle: 8 degree - Front height: 18 mm - Size: 80% TKL, 355.5mm x 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ... Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ## 4. (Pre Order) Neo80 Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit (Pre Order) Neo80 Keyboard Kit ... # (Pre Order) Neo80 Keyboard Kit ... £89.17 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Expected to ship Q2 2024 ... PRE-ORDERS CLOSE AFTER CNY ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... 1.72kg before assembly, 2.22kg after assembly ... steel weight: 1.7KG before assembly, 2. ... - Including one pre-installed external weight of your choice - Two 2200 mAh ... will be installed inside of the bottom case for orders with Tri-mode PCBs - Orders with wired PCBs or solder PCBs will receive fillers for the battery compartments ... - PCB of your choice - 1x PE sheet - 1x PCB Foam - Standoffs - Tri-mode PCB comes with a 2.4Ghz dongle ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please ... ## 5. (Pre Order) Neo80 Keyboard Kit Batch 5 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-batch-5 (Pre Order) Neo80 Keyboard Kit Batch 5 ... # (Pre Order) Neo80 Keyboard Kit Batch 5 ... £93.33 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... a Pre-Order ... please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Closes May 30th 2025 ... Expected to ship Q4 2025 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q4 2025 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. If your extra cost items are not billed at checkout you will receive an invoice for them once the pre-order window closes. Only the items specified in each product picture are included with that particular product. ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree t...
Conversation to summarize: === MESSAGE 0 - System === <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: Thursday, 2026-07-16
</system_info>
=== MESSAGE 1 - System === <rules type="always-on"> <rule name="global_rules" path="/Users/root1/.codeium/windsurf/memories/global_rules.md">
</rule> <rule name="AGENTS" path="/Users/root1/AGENTS.md"> # Agent Preferences~/.env (e.g. HF_TOKEN for Hugging Face). Source it before use: set -a; . ~/.env; set +aFor 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.
# 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.
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):
grep query. No load.*metadata.*Foo style regex..*, \d+, \s+ almost always return 0 results.multi_grep for OR logic across multiple identifiers (e.g. snake_case + PascalCase variants) in one call.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
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.
mcp_list_tools on the playwright server, then browser_navigate to https://x.com.https://x.com/home, read ct0 from document.cookie:
document.cookie.match(/ct0=([^;]+)/)[1]fetch() inside browser_evaluate. Required headers:
authorization: Bearer AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA (the public web-app bearer token)x-csrf-token: <ct0>x-twitter-auth-type: OAuth2Sessionx-twitter-active-user: yescontent-type: application/jsonUser: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.content.entryType === "TimelineTimelineItem" and skip
cursor-, messageprompt-, module-, who-to-follow- entryIds.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.
~/Downloads/utilities/sdand_following.csv (1613 rows: #, id, screen_name, name, verified, followers, bio)~/Downloads/utilities/sdand_following_final.json (double-encoded JSON string; parse with json.loads(json.loads(raw)))~/Downloads/utilities/twscrape/ for reference, then deleted after the flow was reverse-engineered. Re-clone from https://github.com/vladkens/twscrape.git if needed.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).
Shell alias (defined in ~/.zshrc): whisper
# 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.
BatchedInferencePipeline with batch_size=16 — batches encoder/decoder across chunks (2-4x)beam_size=1 (greedy) — ~2x faster, negligible WER increase for conversational speechvad_filter=True — skips silence segmentscompute_type="float16" — halves memory bandwidthforce_build=True on apt/pip steps + unique download_root per run forces
fresh image rebuild + fresh HF model download every timefaster-whisper==1.1.1 (provides BatchedInferencePipeline)ctranslate2==4.8.0nvidia/cuda:12.6.3-cudnn-runtime-ubuntu22.04 (provides libcublas.so.12;
debian_slim fails with RuntimeError: Library libcublas.so.12 is not found)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.
--playlist-item N to pick one.-f bestaudio/best to avoid downloading multi-GB high-bitrate video streams.~/Downloads/utilities/whisper_x/whisper_transcribe.py~/Downloads/utilities/whisper_x/STRATEGY.md (full optimization breakdown)~/Downloads/utilities/whisper_x/transcribe_fast.pywhisper-audio (created automatically; holds uploaded audio files)aidenhuang-personal (workspace with GPU access)=== MESSAGE 2 - User === search the web, when the neo80 cu released, how much was it selling for?
=== MESSAGE 3 - System ===
<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.
=== MESSAGE 4 - Assistant === I'll search the web for info on the Neo80 CU release date and pricing.
=== MESSAGE 5 - Tool === Tool 'web_search' validation failed: Failed to parse input: missing required field 'query' for tool 'web_search'
=== MESSAGE 6 - Assistant ===
=== MESSAGE 7 - Tool ===
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
... $259.99 ...
... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ...
... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD
URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard
... €195,00 ... Estimated Ship Time: 12 Weeks ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Estimated Ship Date: 12 weeks after ordering
URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom
[Pre-Order] Neo80 Cu - Copper ...
... RM 259.44 ... RM 259.44 RM 0.00 ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine.
– SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order
... $195.00 Sale • Save ... Add to Cart • $195.00
URL: https://www.rebultkeyboards.com/products/neo80-cu
Neo80 Cu Keyboard Kit (Without Plate) – Rebult Keyboards ...
... RM 1,149.00 ... RM 1,149.00 RM 0.00 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine.
=== MESSAGE 8 - Assistant === Based on the search results, here's what I found about the Neo80 Cu:
The Neo80 Cu pre-order opened on October 11, 2025 at 8 PM (via Rebult Keyboards) and ran through October 23, 2025, 11:59 PM, with estimated fulfillment in December 2025.
Note: Qwertykeys announced a price adjustment effective July 1st, so the $259.99 may reflect the post-adjustment price. The kit weighs around 4.5 kg built and comes in brass or copper bottom variants.
Sources:
=== MESSAGE 9 - User === i swear it released before that
=== MESSAGE 10 - Assistant === You're right to question that. Let me dig deeper — the October 2025 date may just be one vendor's pre-order batch, not the original release.
=== MESSAGE 11 - Tool === Tool 'web_search' validation failed: Failed to parse input: missing required field 'query' for tool 'web_search'
=== MESSAGE 12 - Assistant ===
=== MESSAGE 13 - Tool ===
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ...
URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit
(Pre-Order) Neo80 Cu Keyboard Kit ...
... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ... the date specified above, but ... the latest information.
URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom
[Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ...
... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine.
URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard
Qwertykeys Neo80 Cu Keyboard ...
... Made to Order ... This item is a made to order! ... Estimated Ship Time: 12 Weeks ... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Estimated Ship Date: 12 weeks after ordering ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ... Made to order items may be ordered with in-stock items. The order will be shipped out once the preorder item arrives in our facility.
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025
=== MESSAGE 14 - Assistant === Found it — you're right. There was an earlier batch
=== MESSAGE 15 - User === continue
=== MESSAGE 16 - Assistant === Found it — you're right. There was an earlier batch before the October 2025 one.
=== MESSAGE 17 - System === [Response interrupted by user]
=== MESSAGE 18 - User === continue
=== MESSAGE 19 - Assistant ===
=== MESSAGE 20 - Tool ===
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
... $259.99 ...
... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ...
... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD
URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard
... €195,00 ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended.
URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-may-24
(Pre Order) Neo80 Keyboard Kit May 24 ...
... £85.00 ... Expected to ship Q3-Q4 2024 ... Pre-Order Open May 22nd - June 3rd 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... UPDATE for May 24 Pre-Order ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
... $154.99 USD ... $154.99 USD ...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025
URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-june-24
(Pre Order) Neo80 Keyboard Kit June 24 ...
... £85.00 ... Expected to ship Q3-Q4 2024 ... Pre-Order Open June 17th - June 25th 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
=== MESSAGE 21 - Assistant ===
=== MESSAGE 22 - Tool ===
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
URL: https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504
| Neo75 Keyboard | Estimated shipping end of Q1, 2026 | | Neo80 Cu Keyboard Batch 2 | Shipping complete. | | Neo98 Keyboard | Estimated shipping end of Q1, 2026 |
URL: https://www.rebultkeyboards.com/collections/neo-studio
FREE SHIPPING WITHIN MALAYSIA + FREE BATIK POUCH Neo80 Cu Keyboard Kit (Without Plate) RM 1,039.00 - RM 1,149.00 RM 1,039.00 - RM 1,149.00 RM 0.00 Anodized Taupe Grey/Copper Bottom/Mirror Champagne SS Weight/WK Anodized Taupe Grey/Brass Bottom/Machining-Mark SS Weight/WK Anodized Slate Blue/Copper Bottom/Mirror Dusk SS Weight/WK +1 ... Neo80 Cu - Extra Parts RM 25.00 - RM 259.00 RM 25.00 - RM 259.00 RM 0.00 Extra SS Battery Compartment Fillers Alu Plate PP Plate +8 ... [Pre-Order] Neo80 Cu - Brass Bottom RM 915.00 - RM 1,219.00 RM 915.00 - RM 1,219.00 RM 0.00 ... [Pre-Order] Neo80 Cu - Copper Bottom RM 979.00 - RM 1,285.00 RM 979.00 - RM 1,285.00 RM 0.00 ... [Pre-Order] Extra Parts for Neo80 Cu RM 25.00 - RM 259.00 RM 25.00 - RM 259.00 RM 0.00 Extra SS Battery Compartment Fillers Alu Plate PP Plate +8 ... Keyboard Kit (Without ... 605.00 - ... 745.00 ... 605.00 - ... 745.00 RM 0.00 ... [Pre-Order] Neo80 (Anodized) - May. 2024 Batch RM 530.00 - RM 835.00 RM 530.00 - RM 835.00 RM 0.00 ... [Pre-Order] Neo80 (Spray Coated) - May. 2024 Batch RM 600.00 - RM 905.00 RM 600.00 - RM 905.00 RM 0.00 ... [Pre-Order] Neo80 Extra Parts - May. 2024 Batch RM 25.00 - RM 255.00 RM 25.00 - RM 255.00 RM 0.00 Tri-mode Non-flex cut Hotswap PCB Wired Non-flex cut Hotswap PCB Solder Non-flex cut PCB +8 ... [Pre-Order] Neo80 (Raw) - May. 2024 Batch RM 510.00 - RM 815.00 RM 510.00 - RM 815.00 RM 0.00
URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-batch-10
(Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ...
...
... £158.33 ... This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... Expected Shipping time: late Q3 2026 ... Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product.
URL: https://www.qwertykeys.com/en-de/products/neo65-1
I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ...
... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ...
...
... We'll lock orders for fulfilment every 7 days. For example, orders placed between Aug. 30th and Sep. 5th will be locked for fulfilment on Sep. 6th as a batch. We expect to fulfill all orders of each batch within 2-4 weeks after each batch ends. The actual timing is subject to change based on the total units sold.
=== MESSAGE 23 - Assistant ===
=== MESSAGE 24 - Tool ===
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ...
... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ...
...
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... Qwertykeys ...
...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025
URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard
Qwertykeys Neo80 Cu Keyboard – Divinikey ...
... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Estimated Ship Date: 12 weeks after ordering ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended.
URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys
[GB] Neo80 CU by Qwertykeys – pantheonkeys ...
... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026
URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit
Pre-Order Ends: 30th November 2025 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
=== MESSAGE 25 - Assistant ===
=== MESSAGE 26 - Tool ===
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ...
... Estimated Fulfillment Time: 8 ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ...
... Brass/Copper Bottom ... : +$20 USD ...
URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys
[GB] Neo80 CU by Q ... keys – pantheonkeys ...
... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026
URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom
[Pre-Order] Neo80 Cu - Copper ... [Pre-Order] Neo8 ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ...
– SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order
Neo80 ...
... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order.
URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit
Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
=== MESSAGE 27 - Assistant ===
=== MESSAGE 28 - Tool ===
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
... Top Case: WK ...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Typing angle ... 8 degree ... Size: 80% TKL**,** 355.5mm * 134 mm ... Layout: WK/WKL ... Brass weight + Brass bottom: 5.3kg ... Copper weight + Copper bottom: 5.415kg
URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard
Qwertykeys Neo80 Cu Keyboard – Divinikey ...
... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Qwertykeys Neo80 Cu Keyboard Features: ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ...
... Built around the beloved 80% layout, this keyboard is a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ...
... Despite its large 80% layout, Neoworks has maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Like most Neo ... bottom case features a partitioned acoustic chamber to minimize hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without any foam. ... Poron Gasket structure has been integrated into the Neo80 Cu. Unlike traditional Poron Gaskets that require gluing to the case, the Neo80 Cu was designed with special grooves in the bottom case to securely hold the Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional durability over time. Silicone gasket mount structure is also retained, as an alternative option for those who prefer it. ... In addition to the ne...
– UniKeys URL: https://unikeyboards.com/en-jp/collections/80-keyboard
... From ¥24,684 JPY
– UniKeys URL: https://unikeyboards.com/en-ie/collections/mechanical-keyboards
... From €167,49 EUR
URL: https://help.deskhero.ca/en-US/group-buy-keyboard-updates-4856504
| Neo75 Keyboard | Estimated shipping end of Q1, 2026 | | Neo80 Cu Keyboard Batch 2 | Shipping complete. | | Neo98 Keyboard | Estimated shipping end of Q1, 2026 |
=== MESSAGE 29 - Assistant ===
=== MESSAGE 30 - Tool ===
URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom
[Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ...
... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ...
– SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order
Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ...
... $195.00 Sale • Save ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order.
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ...
... $259.99 ... techs, ... day or a day later ... QK) ... day or a day later as Q ... Prototyp ... Fulfillment Status: ... Visit Discord to view fulfillment status ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ...
... Brass/Copper Bottom Case: +$20 USD ...
... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... Neo80 ... Not only are we bringing back the fan-favorite Teal from the Neo series, but we’re also introducing a stunning lineup of fresh colors — Slate Blue, Taupe Grey, Dusty Rose, Jade, and Ruby Rose, giving you even more ways to make your keyboard truly yours.
URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit
(Pre-Order) Neo80 Cu Keyboard Kit ...
... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... Follow Group Buy / Pre-Order Updates Here ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ... Thes...
URL: https://www.rebultkeyboards.com/products/neo80-cu
Neo80 Cu Keyboard Kit (Without Plate) – Rebult Keyboards ...
... RM 1,149.00 ... RM 1,149.00 RM 0.00 ... SS Weight/WK, Tri-Mode ... Hotswap PCB - Sold Out Anodized Taupe Grey/Brass ... -Mark SS Weight ... WK, Tri-Mode ... Hotswap PCB - Sold Out Anodized Slate Blue/Copper ... /Mirror Dusk SS Weight/ ... -Mode ANSI Hotswap ...
=== MESSAGE 31 - Assistant ===
=== MESSAGE 32 - Tool ===
[Skip to content][1]
For U.S. customers, no additional taxes or customs clearance fees are required.
[
Need help? We're here!
][2]
Free Shipping on Extra Parts Orders Over $200 (Owlstabs Excluded)
Pause slideshow Play slideshow
Product Highlights
Wireless Support VIA Support ISO Support Custom Keyboard
$259.99
4.0
1 review 1 total reviews
Layout Layout: WK
Fulfillment Status:
[Visit Discord to view fulfillment status][95]
Free Shipping with Your Keyboard
This is a pre-order product.
Estimated Fulfillment Time: 8 weeks
One-Year Functionality Warranty
[Neo80 Cu Custom Mechanical Keyboard]
Neo80 Cu Custom Mechanical Keyboard
WK / Anodized Silver $259.99 Add to cart
The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT.
If you'd like to order at the current pricing, please don’t miss the last chance:
Brass/Copper Bottom Case: +$15 USD
Brass/Copper Bottom Case: +$15 USD
Brass/Copper Bottom Case: +$20 USD
Brass/Copper Weight: +$10 USD
[Load video: ]
The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver.
Page 1 Page 2 Page 3 Page 4
Despite its large 80% layout, we've maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled.
[ Does weight matter? ][96]
Like most Neo keyboards, the bottom case features a partitioned acoustic chamber to minimize hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without any foam.
Inspired by massive celestial bodies, whose gravity warps surrounding space, the Neo80 Cu's top case features a multi-layered "star ring" light that captures the brilliance of a planet against the dark night sky. The central "planet" features a triple-etched aluminum finish, surrounded by a mirrored stainless-steel ring, creating a striking "floating planet" effect.
On the back, the intersection of the weight and the bottom case features a carefully sculpted slope that softens transitions. The compass-inspired Cu series logo sits in the center, showcasing the iconic symbolism of the Neo brand.
Poron Gasket Mount** + Silicone Gasket Mount + **Top Mount
We've integrated the Poron Gasket structure into the Neo80 Cu. Unlike traditional Poron Gaskets that require gluing to the case, we've designed special grooves in the bottom case to securely hold the Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional durability over time. Of course, we've also retained the silicone gasket mount structure as an alternative option for those who prefer it.
*Since the top-mount screws are fixed through the plate, choosing a solder PCB with a plateless configuration makes top-mounting unavailable
Glossy-chamfer ALU Plate Predecessor
After listening to our community, we designed a flex-cut aluminum p… (28 chars truncated) … (309 lines truncated) <truncation_notice> Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/ab550956/content.txt </truncation_notice>
=== MESSAGE 33 - Assistant ===
=== MESSAGE 34 - Tool ===
URL: https://www.qwertykeys.com/en-de/products/neo80-cu-custom-mechanical-keyboard
... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ...
... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD
URL: https://www.qwertykeys.com/en-nl/products/neo80-cu-custom-mechanical-keyboard
... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ...
... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD
URL: https://www.qwertykeys.com/products/neo65-cu-custom-mechanical-keyboard
... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ...
... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD
URL: https://keeb-finder.com/keyboards/neo80-tkl-iso-ansi-aluminium-keyboard-kit-in-stock-extras
Qwertykeys Neo80 Starting at $172.99 - Best Deals ... Compare prices from $173.00 to $188 · Popularity rank 101 in Keyboards ...
... Qwertykeys Neo80 Cu Keyboard ... $173 ... 173 ... (USD) | Link* | ... | --- | --- | --- | --- | --- | --- | | Qwertykeys Neo80 Cu Keyboard | | Qwertykeys Neo80 | | ? | ...
... The price history chart tracks the lowest price over time (excluding shipping costs). ... $173 ... $160 ... $170 ... $170 ... $186
URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys
$238.00 SGD ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026
=== MESSAGE 35 - Assistant ===
=== MESSAGE 36 - Tool ===
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
... $154.99 USD ...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
– SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order
Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ...
... $195.00 Sale • Save ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ...
URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom
[Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ...
... RM 259.44 ... FREE SHIPPING WITHIN MALAYSIA (EAST MALAYSIA INCLUDED) ... 1 UNIT PER ORDER, YOU CAN PLACE MULTIPLE ORDERS ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ...
URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys
[GB] Neo80 CU by Qwertykeys – pantheonkeys ...
... $238.00 ... Out of stock ... a pre-order item, please do not add other in stock items to your ... ordering or your ... will be cancelled ... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026 ...
URL: https://ktechs.store/products/neo80cu
Group Buys & Pre-Orders ...
... 238.0 ... 223.00 SGD / Save 6% Sold out ... I understand that this is a group buy/ pre-order product and have read and understood the Group Buy & Pre-Order Policy ... ⚠️ Please agree to the terms of our Group Buy & Pre-Order Policy to proceed. ... Pickup currently unavailable at Yu Li Industrial Building ... Groupbuy Details ... Group Buy: The current pre-order ends 31st January 2026Fulfilment: 3 months after end of pre-order(Please note that fulfilment may be delayed due to manufacturing, dates and timeline reflected are an estimate.) ... Group Buy & Pre-Order Policy ... This is a pre-order product, read more about our policy here. ... Neo80 ... $238.00 SGD $223.00 SGD /
=== MESSAGE 37 - Assistant ===
=== MESSAGE 38 - Tool ===
[ Skip to content ][1]
[ Keyboard Switches ][140] [ Mechanical Keyboard ][141] [ Keyboard Keycaps ][142] [ Coiled Keyboard Cable ][143] [ Keyboard Accessories ][144] [ Mechanical Keyboard Switches ][145] [ PBT Keycaps ][146] [ ABS Keycaps ][147] Search page [ [UniKeys] ][148] [ Log in ][149] [ $0.00 Total $0.00 in cart ][150]
=== MESSAGE 39 - Assistant ===
=== MESSAGE 40 - Tool ===
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Layout: WK/WKL
– UniKeys URL: https://unikeyboards.com/en-ie/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Layout: WK/WKL
– UniKeys URL: https://unikeyboards.com/collections/80-keyboard
... From $154.99 USD
– Page 2 – UniKeys URL: https://unikeyboards.com/collections/qwertykeys?page=2
... From $154.99 USD
– UniKeys URL: https://unikeyboards.com/en-jp/collections/80-keyboard
... From ¥24,684 JPY
=== MESSAGE 41 - Assistant ===
=== MESSAGE 42 - Tool ===
[KeebFinder][1] [Finder][2] [Sales][3] [Keyboards][4] [Keycaps][5] [Switches][6] [Mice][7] [More][8] $ [ Not sure which keyboard to choose? Try the Keyboard Finder now! ][9]Feedback
[ 5.0 stars (8 reviews) ][14] [ Details ][15][ Specification ][16][ Price alert ][17][ Compare price ][18][ Price history ][19][ FAQ ][20] The Qwertykeys Neo80 ISOANSI is a customizable 80% TKL mechanical keyboard kit suited for hobbyists who want to build a versatile keyboard with both ISO and ANSI layouts. It fits users who value wireless and wired connectivity options, modular mounting styles, and a screwless assembly process. This board requires separate purchase of switches and keycaps, making it ideal for those comfortable with keyboard assembly and customization.</p... [Read more][21] Compare prices from $173.00 to $209 · Popularity rank 101 in [Keyboards][22] [ Qwertykeys ][23][ 80% Profile ][24][ Aluminum Case ][25][ Gasket Mount ][26][ Under $200 ][27][ USB-C ][28][ N-Key Rollover ][29][ Keyboard Kit ][30][ ANSI layout ][31][ Red Case ][32] [ Details ][33][ Specification ][34][ Price alert ][35][ Compare price ][36][ Price history ][37][ FAQ ][38]
Click the coupon code for a discount. Features and specs may vary by model version.
Qwertykeys Neo80
Qwertykeys Neo80 Cu Keyboard
[ [Divinikey] Divinikey Based in US $173 ][40] -5% Code: KEEBFINDER Copy
───────────┬───────────┬───────────────────┬────────────┬────────────┬───────────────
Vendor │Location │Coupon Code │In Stock │Price (USD) │Link*
───────────┴───────────┴───────────────────┴────────────┴────────────┴───────────────
Qwertykeys Neo80
───────────┬───────────┬───────────────────┬────────────┬────────────┬───────────────
[Amazon] │Global │- │Check vendor│Check vendor│[
│ │ │ │ │Visit shop
│ │ │ │ │][41]
───────────┴───────────┴───────────────────┴────────────┴────────────┴───────────────
Qwertykeys Neo80 Cu Keyboard
───────────┬───────────┬───────────────────┬────────────┬────────────┬───────────────
[Divinikey]│Based in US│-5% Code: │ │$173 │[
│ │KEEBFINDER │ ...[2204 chars truncated]... Quality │Build Quality │Build Quality
│85.1 │90.0 │86.9
│Customizability │Customizability │Customizability
│55.2 │99.4 │97.2
│Performance │Performance │Performance
│60.6 │100.0 │79.7
│Productivity │Productivity │Productivity
│61.9 │96.8 │93.6
│Portability │Portability │Portability
│71.8 │80.9 │75.7
│[[Qwertykeys Neo80 Cu │[[Keychron Q1 HE QMK Wireless Custom │[[Nuphy GEM80 Barebones
│Keyboard]][45] │Keyboard ISO Layout Collection]][47] │Keyboard Kit]][49]
───┼─────────────────────────┼───────────────────────────────────────────┼──────────────────────────
Rat│5.0 stars (8 reviews) │4.0 stars (34 reviews) │0.0 stars (0 reviews)
ing│ │ │
───┼─────────────────────────┼───────────────────────────────────────────┼──────────────────────────
Pur│Buy on Divinikey │Buy on Input Gear │Buy on Nuphy
cha│[Divinikey] │[Input Gear] │[Nuphy]
se │$173 │$160 │$170
Opt│ │ │
ion│ │ │
s │ │ │
───┼─────────────────────────┼───────────────────────────────────────────┼──────────────────────────
Mai│* Released in 2025 │* Released in 2023 │* Released in 2024
n │* Built with the ANSI │* Has Magnetic, Linear, Tactile, Clicky │* Has Mechanical switch
dif│ layout standard │ switch options │ options
fer│* Supports Bluetooth, 2.4│* Available in a 75% layout │* Built with the ANSI,
enc│ GHz, Wired, Wireless │* Built with the ISO, ISO-UK, ISO-Nordic, │ ISO-DE, ISO layout
es │ connectivity │ ISO-SW, ISO-ES, ISO-FR, ISO-IT, ISO-DE, │ standard
│* Equipped with a 4400 │ ANSI, JIS layout standard │* Weighs about 1120 g
│ mAh ba… (92 chars truncated)
… (860 lines truncated)
<truncation_notice>
Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/a5044163/content.txt
</truncation_notice>
=== MESSAGE 43 - Assistant ===
=== MESSAGE 44 - Tool ===
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ...
... Fulfillment Status: ... Visit Discord to view fulfillment status ...
...
URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard
Qwertykeys Neo80 Cu Keyboard – Divinikey ... Join our Divinikey Community Discord! ...
... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Qwertykeys Neo80 Cu Keyboard Features ...
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ...
...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
– SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order
Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ...
... The Neo80 Cu is built around the beloved 80% layout, a proven favourite among professionals and enthusiasts who prioritise efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... 0% layout, we' ... maintained the Cu series' signature all-copper ... kg when fully assembled. ... We've integrated ... on Gasket structure into the Neo80 Cu. Unlike ... on Gaskets that require ... , we' ... to securely hold ... . This innovation allows for hassle ... and ensures exceptional ... time. Of course, we've also ... as an alternative option for ...
URL: https://ktechs.store/products/neo80cu
Neo80Cu – ktechs Skip to content ... Join our Discord community! ...
... Neo80 Cu is built around the beloved 80% layout, a ... . This layout offers ... Neo80Cu ... Groupbuy Details ... Group Buy: The current pre-order ends 31st January 2026Fulfilment: 3 months after end of pre-order(Please note that fulfilment may be delayed due to manufacturing, dates and timeline reflected are an estimate.) ... Neo80Cu ...
... Not only are we bringing back the fan-favoriteTeal from the Neo series, but we’re also introducing a stunning lineup offresh colors— Slate Blue, Taupe Grey, Dusty Rose, Jade, and Ruby Rose, giving you even more ways to make your keyboard truly yours.
=== MESSAGE 45 - Assistant ===
=== MESSAGE 46 - Tool ===
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-june-24
Expected to ship Q3-Q4 2024 ... Pre-Order Open June 17th - June 25th 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-may-24
Expected to ship Q3-Q4 2024 ... Pre-Order Open May 22nd - June 3rd 2024 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... UPDATE for May 24 Pre-Order ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q3-Q4 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product.
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
Neo80 Cu ... Neo80 Cu ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... orders and ship them to the ... Fulfillment Status: ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ...
...
– UniKeys URL: https://unikeyboards.com/en-ie/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
[... 24 messages omitted due to length ...]
=== MESSAGE 71 - Tool === <file-view path="/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt" start_line="1" end_line="470" total_lines="3112"> 1|WEBVTT 2|Kind: captions 3|Language: en 4| 5|00:00:01.120 --> 00:00:02.950 align:start position:0% 6| 7|Hello. 8| 9|00:00:02.950 --> 00:00:02.960 align:start position:0% 10|Hello. 11| 12| 13|00:00:02.960 --> 00:00:05.190 align:start position:0% 14|Hello. 15|Warm<00:00:03.280><c> regards.</c><00:00:04.240><c> Oh,</c><00:00:04.400><c> that's</c><00:00:04.640><c> one</c><00:00:04.799><c> I</c><00:00:04.960><c> haven't</c> 16| 17|00:00:05.190 --> 00:00:05.200 align:start position:0% 18|Warm regards. Oh, that's one I haven't 19| 20| 21|00:00:05.200 --> 00:00:07.590 align:start position:0% 22|Warm regards. Oh, that's one I haven't 23|used.<00:00:05.520><c> Warm</c><00:00:05.839><c> regards,</c><00:00:06.319><c> everybody.</c><00:00:07.200><c> I</c><00:00:07.440><c> guess</c> 24| 25|00:00:07.590 --> 00:00:07.600 align:start position:0% 26|used. Warm regards, everybody. I guess 27| 28| 29|00:00:07.600 --> 00:00:10.470 align:start position:0% 30|used. Warm regards, everybody. I guess 31|let's<00:00:07.919><c> jump</c><00:00:08.160><c> right</c><00:00:08.400><c> into</c><00:00:08.639><c> the</c><00:00:08.880><c> Neo80</c><00:00:09.920><c> CU,</c> 32| 33|00:00:10.470 --> 00:00:10.480 align:start position:0% 34|let's jump right into the Neo80 CU, 35| 36| 37|00:00:10.480 --> 00:00:14.230 align:start position:0% 38|let's jump right into the Neo80 CU, 39|shall<00:00:10.719><c> we?</c><00:00:11.280><c> All</c><00:00:11.360><c> right,</c><00:00:12.240><c> so</c><00:00:12.719><c> starts</c><00:00:12.960><c> at</c><00:00:13.120><c> 209.</c> 40| 41|00:00:14.230 --> 00:00:14.240 align:start position:0% 42|shall we? All right, so starts at 209. 43| 44| 45|00:00:14.240 --> 00:00:17.510 align:start position:0% 46|shall we? All right, so starts at 209. 47|The<00:00:14.480><c> color</c><00:00:14.719><c> options</c><00:00:15.360><c> are</c><00:00:16.560><c> great.</c><00:00:17.119><c> Um,</c><00:00:17.359><c> the</c> 48| 49|00:00:17.510 --> 00:00:17.520 align:start position:0% 50|The color options are great. Um, the 51| 52| 53|00:00:17.520 --> 00:00:19.590 align:start position:0% 54|The color options are great. Um, the 55|Mont<00:00:17.760><c> Blanc</c><00:00:18.160><c> is</c><00:00:18.320><c> my</c><00:00:18.480><c> favorite.</c><00:00:19.279><c> I</c><00:00:19.439><c> don't</c><00:00:19.520><c> know</c> 56| 57|00:00:19.590 --> 00:00:19.600 align:start position:0% 58|Mont Blanc is my favorite. I don't know 59| 60| 61|00:00:19.600 --> 00:00:21.109 align:start position:0% 62|Mont Blanc is my favorite. I don't know 63|if<00:00:19.760><c> I</c><00:00:19.920><c> got</c><00:00:20.000><c> the</c><00:00:20.080><c> Mont</c><00:00:20.320><c> Blanc</c><00:00:20.640><c> today,</c><00:00:20.800><c> but</c><00:00:20.960><c> the</c> 64| 65|00:00:21.109 --> 00:00:21.119 align:start position:0% 66|if I got the Mont Blanc today, but the 67| 68| 69|00:00:21.119 --> 00:00:22.870 align:start position:0% 70|if I got the Mont Blanc today, but the 71|jade's<00:00:21.520><c> also</c><00:00:21.760><c> really</c><00:00:22.000><c> pretty.</c><00:00:22.320><c> The</c><00:00:22.480><c> taupe</c> 72| 73|00:00:22.870 --> 00:00:22.880 align:start position:0% 74|jade's also really pretty. The taupe 75| 76| 77|00:00:22.880 --> 00:00:25.830 align:start position:0% 78|jade's also really pretty. The taupe 79|gray<00:00:23.119><c> is</c><00:00:23.359><c> pretty.</c><00:00:24.160><c> You</c><00:00:24.400><c> know,</c><00:00:25.199><c> I</c><00:00:25.439><c> hate</c><00:00:25.680><c> saying</c> 80| 81|00:00:25.830 --> 00:00:25.840 align:start position:0% 82|gray is pretty. You know, I hate saying 83| 84| 85|00:00:25.840 --> 00:00:27.349 align:start position:0% 86|gray is pretty. You know, I hate saying 87|this,<00:00:26.000><c> but</c><00:00:26.160><c> the</c><00:00:26.320...[13931 chars truncated]...0:01:51.520 --> 00:01:53.830 align:start position:0% 390|this a 360 yet, and I'm already sold 391|just<00:01:51.680><c> off</c><00:01:51.840><c> of</c><00:01:52.000><c> this</c><00:01:52.159><c> one</c><00:01:52.320><c> feature.</c><00:01:53.280><c> Like</c><00:01:53.520><c> this</c> 392| 393|00:01:53.830 --> 00:01:53.840 align:start position:0% 394|just off of this one feature. Like this 395| 396| 397|00:01:53.840 --> 00:01:55.590 align:start position:0% 398|just off of this one feature. Like this 399|little<00:01:54.159><c> seam</c><00:01:54.560><c> over</c><00:01:54.720><c> here</c><00:01:54.960><c> that</c><00:01:55.280><c> kind</c><00:01:55.520><c> of</c> 400| 401|00:01:55.590 --> 00:01:55.600 align:start position:0% 402|little seam over here that kind of 403| 404| 405|00:01:55.600 --> 00:01:57.270 align:start position:0% 406|little seam over here that kind of 407|expands<00:01:56.000><c> in</c><00:01:56.240><c> the</c><00:01:56.320><c> middle,</c><00:01:56.560><c> then</c><00:01:56.799><c> tapers</c> 408| 409|00:01:57.270 --> 00:01:57.280 align:start position:0% 410|expands in the middle, then tapers 411| 412| 413|00:01:57.280 --> 00:01:59.749 align:start position:0% 414|expands in the middle, then tapers 415|downwards.<00:01:58.399><c> This</c><00:01:58.640><c> beautiful</c><00:01:59.119><c> curve</c><00:01:59.520><c> over</c> 416| 417|00:01:59.749 --> 00:01:59.759 align:start position:0% 418|downwards. This beautiful curve over 419| 420| 421|00:01:59.759 --> 00:02:02.389 align:start position:0% 422|downwards. This beautiful curve over 423|here.<00:02:00.960><c> I</c><00:02:01.200><c> think</c><00:02:01.280><c> they</c><00:02:01.520><c> did</c><00:02:01.600><c> a</c><00:02:01.759><c> lovely</c><00:02:02.000><c> job</c><00:02:02.159><c> with</c> 424| 425|00:02:02.389 --> 00:02:02.399 align:start position:0% 426|here. I think they did a lovely job with 427| 428| 429|00:02:02.399 --> 00:02:05.109 align:start position:0% 430|here. I think they did a lovely job with 431|this.<00:02:03.520><c> Lovely,</c><00:02:04.000><c> lovely</c><00:02:04.399><c> job</c><00:02:04.560><c> with</c><00:02:04.719><c> the</c><00:02:04.880><c> side</c> 432| 433|00:02:05.109 --> 00:02:05.119 align:start position:0% 434|this. Lovely, lovely job with the side 435| 436| 437|00:02:05.119 --> 00:02:07.590 align:start position:0% 438|this. Lovely, lovely job with the side 439|profile.<00:02:06.000><c> So,</c><00:02:06.240><c> that</c><00:02:06.479><c> seam</c><00:02:06.799><c> kind</c><00:02:06.960><c> of</c><00:02:07.119><c> continues</c> 440| 441|00:02:07.590 --> 00:02:07.600 align:start position:0% 442|profile. So, that seam kind of continues 443| 444| 445|00:02:07.600 --> 00:02:10.869 align:start position:0% 446|profile. So, that seam kind of continues 447|on<00:02:08.239><c> all</c><00:02:08.560><c> around</c><00:02:08.800><c> the</c><00:02:09.039><c> board,</c><00:02:09.280><c> which</c><00:02:09.520><c> is</c><00:02:09.759><c> nice.</c> 448| 449|00:02:10.869 --> 00:02:10.879 align:start position:0% 450|on all around the board, which is nice. 451| 452| 453|00:02:10.879 --> 00:02:13.110 align:start position:0% 454|on all around the board, which is nice. 455|Kind<00:02:11.039><c> of</c><00:02:11.200><c> maintains</c><00:02:11.680><c> its</c><00:02:12.000><c> width</c><00:02:12.239><c> in</c><00:02:12.480><c> the</c><00:02:12.640><c> back.</c> 456| 457|00:02:13.110 --> 00:02:13.120 align:start position:0% 458|Kind of maintains its width in the back. 459| 460| 461|00:02:13.120 --> 00:02:14.710 align:start position:0% 462|Kind of maintains its width in the back. 463|And<00:02:13.280><c> then</c><00:02:13.440><c> we</c><00:02:13.680><c> have</c><00:02:13.760><c> the</c><00:02:13.920><c> weight,</c><00:02:14.400><c> which</c> 464| 465|00:02:14.710 --> 00:02:14.720 align:start position:0% 466|And then we have the weight, which 467| 468| 469|00:02:14.720 --> 00:02:17.510 align:start position:0% 470|And then we have the weight, which </file-view>
=== MESSAGE 72 - Assistant ===
=== MESSAGE 73 - Tool === Found 6 match(es) for pattern '(209|price|release|drop|pre.?order|group buy|USD|$|date|available|launch)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 6 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 38|let's jump right into the Neo80 CU,
39|shall<00:00:10.719><c> we?</c><00:00:11.280><c> All</c><00:00:11.360><c> right,</c><00:00:12.240><c> so</c><00:00:12.719><c> starts</c><00:00:12.960><c> at</c><00:00:13.120><c> 209.</c> 40| 41|00:00:14.230 --> 00:00:14.240 align:start position:0% 42|shall we? All right, so starts at 209. 43| ... 45|00:00:14.240 --> 00:00:17.510 align:start position:0% 46|shall we? All right, so starts at 209. 47|The<00:00:14.480><c> color</c><00:00:14.719><c> options</c><00:00:15.360><c> are</c><00:00:16.560><c> great.</c><00:00:17.119><c> Um,</c><00:00:17.359><c> the</c> ... 2870|and there's not a single iteration of 2871|this<00:16:08.399><c> that</c><00:16:08.720><c> goes</c><00:16:08.959><c> above</c><00:16:09.440><c> $299</c> 2872| 2873|00:16:11.189 --> 00:16:11.199 align:start position:0% 2874|this that goes above $299 2875| ... 2877|00:16:11.199 --> 00:16:13.110 align:start position:0% 2878|this that goes above $299 2879|unless<00:16:11.519><c> you're</c><00:16:11.680><c> getting</c><00:16:11.839><c> extra</c><00:16:12.160><c> pieces.</c>
=== MESSAGE 74 - Assistant ===
=== MESSAGE 75 - Tool === Found 36 match(es) for pattern '(January|February|March|April|May|June|July|August|September|October|November|December|2024|2025|2026|group buy|pre-order|preorder|available|shipping|ship|drop)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 36 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 158|you know, I'm really not vibing with
159|teal<00:00:45.360><c> this</c><00:00:45.600><c> time</c><00:00:45.760><c> around.</c><00:00:46.160><c> And</c><00:00:46.320><c> maybe</c><00:00:46.879><c> maybe</c> 160| 161|00:00:47.270 --> 00:00:47.280 align:start position:0% 162|teal this time around. And maybe maybe 163| ... 165|00:00:47.280 --> 00:00:48.790 align:start position:0% 166|teal this time around. And maybe maybe 167|black,<00:00:47.600><c> but</c><00:00:47.760><c> black's</c><00:00:48.079><c> always</c><00:00:48.239><c> a</c><00:00:48.399><c> good</c><00:00:48.480><c> one</c><00:00:48.640><c> if</c> ... 174|black, but black's always a good one if 175|you<00:00:48.879><c> just</c><00:00:48.960><c> want</c><00:00:49.039><c> to</c><00:00:49.120><c> go</c><00:00:49.360><c> stealthy.</c><00:00:49.920><c> Maybe</c><00:00:50.079><c> teal</c> 176| 177|00:00:50.389 --> 00:00:50.399 align:start position:0% 178|you just want to go stealthy. Maybe teal 179| ... 181|00:00:50.399 --> 00:00:52.310 align:start position:0% 182|you just want to go stealthy. Maybe teal 183|is<00:00:50.559><c> my</c><00:00:50.719><c> least</c><00:00:51.039><c> favorite.</c><00:00:51.680><c> Okay,</c><00:00:51.920><c> let's</c><00:00:52.160><c> just</c> ... 214|Uh, I have to double check if you get 215|stabs.<00:00:57.360><c> I</c><00:00:57.520><c> feel</c><00:00:57.600><c> like</c><00:00:57.760><c> you</c><00:00:57.920><c> might,</c><00:00:58.160><c> but</c><00:00:58.640><c> maybe</c> 216| 217|00:00:58.869 --> 00:00:58.879 align:start position:0% 218|stabs. I feel like you might, but maybe 219| ... 221|00:00:58.879 --> 00:01:01.110 align:start position:0% 222|stabs. I feel like you might, but maybe 223|you<00:00:59.120><c> don't.</c><00:00:59.760><c> Oh,</c><00:01:00.000><c> like</c><00:01:00.160><c> a</c><00:01:00.320><c> little</c><00:01:00.559><c> accessories</c> ... 558|the coating on this minus like the one 559|or<00:02:44.160><c> piece</c><00:02:44.400><c> two</c><00:02:44.640><c> pieces</c><00:02:44.879><c> of</c><00:02:45.040><c> dust</c><00:02:45.280><c> that</c><00:02:45.440><c> maybe</c> 560| 561|00:02:45.670 --> 00:02:45.680 align:start position:0% 562|or piece two pieces of dust that maybe 563| ... 565|00:02:45.680 --> 00:02:47.990 align:start position:0% 566|or piece two pieces of dust that maybe 567|have<00:02:45.840><c> settled</c><00:02:46.080><c> in</c><00:02:46.239><c> it</c><00:02:46.400><c> already.</c> ... 678|think this is bad. Would have I would 679|have<00:03:22.159><c> I</c><00:03:22.480><c> liked</c><00:03:22.800><c> maybe</c><00:03:23.040><c> something</c><00:03:23.280><c> a</c><00:03:23.519><c> bit</c> 680| 681|00:03:23.670 --> 00:03:23.680 align:start position:0% 682|have I liked maybe something a bit 683| ... 685|00:03:23.680 --> 00:03:26.149 align:start position:0% 686|have I liked maybe something a bit 687|bigger<00:03:24.239><c> for</c><00:03:24.560><c> sure,</c> ... 758|I I don't mind it. Like would I prefer 759|it<00:03:42.319><c> without</c><00:03:42.640><c> it?</c><00:03:42.959><c> Maybe</c><00:03:43.280><c> not.</c><00:03:44.080><c> It's</c><00:03:44.319><c> It's</c><00:03:44.720><c> not</c> 760| 761|00:03:44.949 --> 00:03:44.959 align:start position:0% 762|it without it? Maybe not. It's It's not 763| ... 765|00:03:44.959 --> 00:03:48.309 align:start position:0% 766|it without it? Maybe not. It's It's not 767|that<00:03:45.280><c> bad.</c> ... 926|compass. I guess I'm just not 100. I I 927|just<00:04:38.560><c> I</c><00:04:38.800><c> just</c><00:04:38.960><c> maybe</c><00:04:39.280><c> don't</c><00:04:39.520><c> love</c><00:04:40.080><c> it.</c><00:04:40.320><c> It's</c> 928| 929|00:04:40.629 --> 00:04:40.639 align:start position:0% 930|just I just maybe don't love it. It's 931| ... 933|00:04:40.639 --> 00:04:43.270 align:start position:0% 934|just I just maybe don't love it. It's 935|actually<00:04:40.880><c> not</c><00:04:41.040><c> as</c><00:04:41.280><c> bad</c><00:04:41.600><c> on</c><00:04:42.000><c> this</c><00:04:42.320><c> board.</c><00:04:43.040><c> I'm</c> ... 1070|too. I guess the compass sort of ties in 1071|with<00:05:16.240><c> this,</c><00:05:17.039><c> maybe,</c><00:05:17.919><c> but</c><00:05:18.080><c> I</c><00:05:18.240><c> would</c><00:05:18.400><c> have</c><00:05:18.560><c> loved</c> 1072| 1073|00:05:18.710 --> 00:05:18.720 align:start position:0% 1074|with this, maybe, but I would have loved 1075| ... 1077|00:05:18.720 --> 00:05:20.790 align:start position:0% 1078|with this, maybe, but I would have loved 1079|to<00:05:18.880><c> see</c><00:05:19.120><c> something</c><00:05:19.440><c> like</c><00:05:19.680><c> this</c><00:05:20.080><c> on</c><00:05:20.320><c> the</c><00:05:20.560><c> back</c> ... 1398|of a difference. The chamered one has 1399|all<00:06:47.520><c> the</c><00:06:47.680><c> flex</c><00:06:48.000><c> cuts,</c><00:06:49.280><c> which</c><00:06:49.919><c> may</c><00:06:50.160><c> turn</c><00:06:50.400><c> you</c> 1400| 1401|00:06:50.550 --> 00:06:50.560 align:start position:0% 1402|all the flex cuts, which may turn you 1403| ... 1405|00:06:50.560 --> 00:06:52.629 align:start position:0% 1406|all the flex cuts, which may turn you 1407|off<00:06:50.720><c> from</c><00:06:50.960><c> buying</c><00:06:51.199><c> this.</c><00:06:51.840><c> I'm</c><00:06:52.160><c> curious.</c><00:06:52.479><c> I</c> ... 1518|really cool if they can implement this 1519|in<00:07:24.400><c> maybe</c><00:07:24.639><c> future</c><00:07:25.039><c> boards.</c><00:07:26.240><c> You</c><00:07:26.479><c> see</c><00:07:26.639><c> how</c><00:07:27.759><c> this</c> 1520| 1521|00:07:27.990 --> 00:07:28.000 align:start position:0% 1522|in maybe future boards. You see how this 1523| ... 1525|00:07:28.000 --> 00:07:29.990 align:start position:0% 1526|in maybe future boards. You see how this 1527|is<00:07:28.240><c> uh</c><00:07:28.400><c> by</c><00:07:28.560><c> the</c><00:07:28.639><c> way</c><00:07:28.880><c> this</c><00:07:29.120><c> is</c><00:07:29.360><c> not</c><00:07:29.759><c> a</c> ... 1958|That's your That's it. You have this and 1959|maybe<00:09:39.279><c> a</c><00:09:39.440><c> top</c><00:09:39.600><c> mount.</c><00:09:40.720><c> But</c><00:09:41.040><c> if</c><00:09:41.279><c> you</c><00:09:41.519><c> use</c><00:09:42.080><c> these</c> 1960| 1961|00:09:42.389 --> 00:09:42.399 align:start position:0% 1962|maybe a top mount. But if you use these 1963| ... 1965|00:09:42.399 --> 00:09:43.990 align:start position:0% 1966|maybe a top mount. But if you use these 1967|kind<00:09:42.560><c> of</c><00:09:42.640><c> gaskets,</c><00:09:43.279><c> you</c><00:09:43.440><c> can</c><00:09:43.600><c> still</c><00:09:43.839><c> play</c> ... 2486|to open it up. I'm going to just see if 2487|it's<00:13:31.040><c> maybe</c><00:13:31.279><c> a</c><00:13:31.440><c> screw</c><00:13:31.760><c> point</c><00:13:32.079><c> or</c><00:13:32.480><c> let's</c><00:13:32.720><c> see</c> 2488| 2489|00:13:32.870 --> 00:13:32.880 align:start position:0% 2490|it's maybe a screw point or let's see 2491| ... 2493|00:13:32.880 --> 00:13:36.069 align:start position:0% 2494|it's maybe a screw point or let's see 2495|what<00:13:33.040><c> it</c><00:13:33.120><c> is.</c><00:13:34.560><c> All</c><00:13:34.560><c> right.</c><00:13:35.120><c> So,</c><00:13:35.440><c> I</c><00:13:35.680><c> guess</c><00:13:35.839><c> next</c>
=== MESSAGE 76 - Assistant ===
=== MESSAGE 77 - Tool === Found 12 match(es) for pattern '(released|release|launch|launched|came out|available|dropped|drop|pre-order|preorder|group buy|gb|sale|sold|buy)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 12 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 382|I mean, I'm I haven't even really given
383|this<00:01:50.000><c> a</c><00:01:50.159><c> 360</c><00:01:50.640><c> yet,</c><00:01:50.799><c> and</c><00:01:50.880><c> I'm</c><00:01:51.119><c> already</c><00:01:51.280><c> sold</c> 384| 385|00:01:51.510 --> 00:01:51.520 align:start position:0% 386|this a 360 yet, and I'm already sold 387| ... 389|00:01:51.520 --> 00:01:53.830 align:start position:0% 390|this a 360 yet, and I'm already sold 391|just<00:01:51.680><c> off</c><00:01:51.840><c> of</c><00:01:52.000><c> this</c><00:01:52.159><c> one</c><00:01:52.320><c> feature.</c><00:01:53.280><c> Like</c><00:01:53.520><c> this</c> ... 910|bottom and even back. The one thing I am 911|still<00:04:33.040><c> not</c><00:04:33.360><c> 100%</c><00:04:34.080><c> sold</c><00:04:34.400><c> on</c><00:04:34.720><c> though,</c><00:04:35.520><c> the</c> 912| 913|00:04:35.749 --> 00:04:35.759 align:start position:0% 914|still not 100% sold on though, the 915| ... 917|00:04:35.759 --> 00:04:38.310 align:start position:0% 918|still not 100% sold on though, the 919|compass.<00:04:36.639><c> I</c><00:04:36.800><c> guess</c><00:04:36.960><c> I'm</c><00:04:37.120><c> just</c><00:04:37.280><c> not</c><00:04:37.440><c> 100.</c><00:04:37.919><c> I</c><00:04:38.080><c> I</c> ... 942|actually not as bad on this board. I'm 943|not<00:04:43.520><c> sold</c><00:04:43.840><c> on</c><00:04:44.000><c> the</c><00:04:44.160><c> compass.</c><00:04:44.880><c> Cool</c><00:04:45.199><c> though.</c> 944| 945|00:04:45.590 --> 00:04:45.600 align:start position:0% 946|not sold on the compass. Cool though. 947| ... 949|00:04:45.600 --> 00:04:47.430 align:start position:0% 950|not sold on the compass. Cool though. 951|Very<00:04:45.919><c> very</c><00:04:46.160><c> cool.</c><00:04:46.560><c> So,</c><00:04:46.720><c> let's</c><00:04:46.960><c> take</c><00:04:47.120><c> a</c><00:04:47.280><c> look</c> ... 1406|all the flex cuts, which may turn you 1407|off<00:06:50.720><c> from</c><00:06:50.960><c> buying</c><00:06:51.199><c> this.</c><00:06:51.840><c> I'm</c><00:06:52.160><c> curious.</c><00:06:52.479><c> I</c> 1408| 1409|00:06:52.629 --> 00:06:52.639 align:start position:0% 1410|off from buying this. I'm curious. I 1411| ... 1413|00:06:52.639 --> 00:06:55.270 align:start position:0% 1414|off from buying this. I'm curious. I 1415|still<00:06:52.800><c> want</c><00:06:52.880><c> to</c><00:06:52.960><c> use</c><00:06:53.120><c> the</c><00:06:53.280><c> aluminum</c><00:06:53.680><c> today.</c><00:06:55.120><c> We</c>
=== MESSAGE 78 - Assistant ===
=== MESSAGE 79 - Tool === <file-view path="/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt" start_line="2800" end_line="2999" total_lines="3112"> 2800| 2801|00:15:50.069 --> 00:15:50.079 align:start position:0% 2802|double up on the force brakes. But yes, 2803| 2804| 2805|00:15:50.079 --> 00:15:51.829 align:start position:0% 2806|double up on the force brakes. But yes, 2807|those<00:15:50.399><c> small</c><00:15:50.720><c> little</c><00:15:50.959><c> things,</c><00:15:51.360><c> small</c><00:15:51.600><c> little</c> 2808| 2809|00:15:51.829 --> 00:15:51.839 align:start position:0% 2810|those small little things, small little 2811| 2812| 2813|00:15:51.839 --> 00:15:54.069 align:start position:0% 2814|those small little things, small little 2815|tweaks,<00:15:52.240><c> I</c><00:15:52.480><c> think</c><00:15:52.560><c> will</c><00:15:52.880><c> make</c><00:15:53.519><c> a</c><00:15:53.839><c> lot</c><00:15:53.920><c> of</c> 2816| 2817|00:15:54.069 --> 00:15:54.079 align:start position:0% 2818|tweaks, I think will make a lot of 2819| 2820| 2821|00:15:54.079 --> 00:15:55.910 align:start position:0% 2822|tweaks, I think will make a lot of 2823|people<00:15:54.320><c> very,</c><00:15:54.560><c> very</c><00:15:54.880><c> happy</c><00:15:55.440><c> at</c><00:15:55.680><c> the</c><00:15:55.759><c> end</c><00:15:55.839><c> of</c> 2824| 2825|00:15:55.910 --> 00:15:55.920 align:start position:0% 2826|people very, very happy at the end of 2827| 2828| 2829|00:15:55.920 --> 00:15:58.870 align:start position:0% 2830|people very, very happy at the end of 2831|the<00:15:56.079><c> day.</c><00:15:57.120><c> Like</c><00:15:57.519><c> lovely</c><00:15:58.079><c> looking</c><00:15:58.399><c> keyboard</c> 2832| 2833|00:15:58.870 --> 00:15:58.880 align:start position:0% 2834|the day. Like lovely looking keyboard 2835| 2836| 2837|00:15:58.880 --> 00:16:00.949 align:start position:0% 2838|the day. Like lovely looking keyboard 2839|though.<00:15:59.759><c> if</c><00:16:00.000><c> you</c><00:16:00.160><c> wanted</c><00:16:00.480><c> something</c><00:16:00.720><c> that</c> 2840| 2841|00:16:00.949 --> 00:16:00.959 align:start position:0% 2842|though. if you wanted something that 2843| 2844| 2845|00:16:00.959 --> 00:16:02.949 align:start position:0% 2846|though. if you wanted something that 2847|felt<00:16:01.360><c> I</c><00:16:01.600><c> think</c><00:16:01.680><c> the</c><00:16:01.920><c> key</c><00:16:02.240><c> takeaway</c><00:16:02.560><c> here</c><00:16:02.800><c> too</c> 2848| 2849|00:16:02.949 --> 00:16:02.959 align:start position:0% 2850|felt I think the key takeaway here too 2851| 2852| 2853|00:16:02.959 --> 00:16:06.310 align:start position:0% 2854|felt I think the key takeaway here too 2855|is<00:16:03.120><c> like</c><00:16:03.360><c> this</c><00:16:03.600><c> feels</c><00:16:04.320><c> incredibly</c><00:16:05.120><c> premium</c> 2856| 2857|00:16:06.310 --> 00:16:06.320 align:start position:0% 2858|is like this feels incredibly premium 2859| 2860| 2861|00:16:06.320 --> 00:16:08.069 align:start position:0% 2862|is like this feels incredibly premium 2863|and<00:16:06.639><c> there's</c><00:16:06.880><c> not</c><00:16:07.040><c> a</c><00:16:07.199><c> single</c><00:16:07.519><c> iteration</c><00:16:07.920><c> of</c> 2864| 2865|00:16:08.069 --> 00:16:08.079 align:start position:0% 2866|and there's not a single iteration of 2867| 2868| 2869|00:16:08.079 --> 00:16:11.189 align:start position:0% 2870|and there's not a single iteration of 2871|this<00:16:08.399><c> that</c><00:16:08.720><c> goes</c><00:16:08.959><c> above</c><00:16:09.440><c> $299</c> 2872| 2873|00:16:11.189 --> 00:16:11.199 align:start position:0% 2874|this that goes above $299 2875| 2876| 2877|00:16:11.199 --> 00:16:13.110 align:start position:0% 2878|this that goes above $299 2879|unless<00:16:11.519><c> you're</c><00:16:11.680><c> getting</c><00:16:11.839><c> extra</c><00:16:12.160><c> pieces.</c> 2880| 2881|00:16:13.110 --> 00:16:13.120 align:start position:0% 2882|unless you're getting extra piec...[1942 chars truncated]... 2924| 2925|00:16:22.639 --> 00:16:25.430 align:start position:0% 2926|these little fixes, I would actually 2927|rank<00:16:23.120><c> this</c><00:16:23.519><c> particular</c><00:16:24.000><c> board</c><00:16:24.639><c> alongside</c><00:16:25.279><c> how</c> 2928| 2929|00:16:25.430 --> 00:16:25.440 align:start position:0% 2930|rank this particular board alongside how 2931| 2932| 2933|00:16:25.440 --> 00:16:27.430 align:start position:0% 2934|rank this particular board alongside how 2935|much<00:16:25.600><c> I</c><00:16:25.759><c> liked</c><00:16:26.000><c> this</c><00:16:26.240><c> the</c><00:16:26.480><c> core</c><00:16:26.800><c> series.</c><00:16:27.279><c> And</c> 2936| 2937|00:16:27.430 --> 00:16:27.440 align:start position:0% 2938|much I liked this the core series. And 2939| 2940| 2941|00:16:27.440 --> 00:16:29.430 align:start position:0% 2942|much I liked this the core series. And 2943|if<00:16:27.680><c> you</c><00:16:27.759><c> guys</c><00:16:27.920><c> remember,</c><00:16:28.639><c> even</c><00:16:28.880><c> while</c><00:16:29.040><c> I</c><00:16:29.279><c> did</c> 2944| 2945|00:16:29.430 --> 00:16:29.440 align:start position:0% 2946|if you guys remember, even while I did 2947| 2948| 2949|00:16:29.440 --> 00:16:31.430 align:start position:0% 2950|if you guys remember, even while I did 2951|the<00:16:29.680><c> original</c><00:16:30.000><c> CU</c><00:16:30.480><c> stuff</c><00:16:30.639><c> and</c><00:16:30.800><c> then</c><00:16:30.959><c> I</c><00:16:31.120><c> did</c><00:16:31.199><c> the</c> 2952| 2953|00:16:31.430 --> 00:16:31.440 align:start position:0% 2954|the original CU stuff and then I did the 2955| 2956| 2957|00:16:31.440 --> 00:16:33.749 align:start position:0% 2958|the original CU stuff and then I did the 2959|core<00:16:31.759><c> series</c><00:16:32.240><c> right</c><00:16:32.480><c> after,</c><00:16:33.279><c> I</c><00:16:33.519><c> was</c><00:16:33.600><c> like,</c> 2960| 2961|00:16:33.749 --> 00:16:33.759 align:start position:0% 2962|core series right after, I was like, 2963| 2964| 2965|00:16:33.759 --> 00:16:36.069 align:start position:0% 2966|core series right after, I was like, 2967|man,<00:16:34.000><c> I</c><00:16:34.160><c> wish</c><00:16:34.240><c> I</c><00:16:34.399><c> got</c><00:16:34.560><c> to</c><00:16:34.720><c> try</c><00:16:34.959><c> this</c><00:16:35.199><c> before</c><00:16:35.600><c> the</c> 2968| 2969|00:16:36.069 --> 00:16:36.079 align:start position:0% 2970|man, I wish I got to try this before the 2971| 2972| 2973|00:16:36.079 --> 00:16:38.629 align:start position:0% 2974|man, I wish I got to try this before the 2975|CU<00:16:36.959><c> because</c><00:16:37.199><c> I'm</c><00:16:37.440><c> always</c><00:16:37.680><c> a</c><00:16:37.920><c> bit</c><00:16:38.000><c> more</c><00:16:38.240><c> on</c><00:16:38.399><c> the</c> 2976| 2977|00:16:38.629 --> 00:16:38.639 align:start position:0% 2978|CU because I'm always a bit more on the 2979| 2980| 2981|00:16:38.639 --> 00:16:41.509 align:start position:0% 2982|CU because I'm always a bit more on the 2983|core<00:16:38.959><c> series</c><00:16:39.519><c> sound</c><00:16:39.839><c> signatures.</c><00:16:41.199><c> But</c><00:16:41.279><c> I</c> 2984| 2985|00:16:41.509 --> 00:16:41.519 align:start position:0% 2986|core series sound signatures. But I 2987| 2988| 2989|00:16:41.519 --> 00:16:43.110 align:start position:0% 2990|core series sound signatures. But I 2991|think<00:16:41.600><c> this</c><00:16:41.839><c> sound</c><00:16:42.079><c> signature</c><00:16:42.560><c> works</c><00:16:42.800><c> really</c> 2992| 2993|00:16:43.110 --> 00:16:43.120 align:start position:0% 2994|think this sound signature works really 2995| 2996| 2997|00:16:43.120 --> 00:16:45.670 align:start position:0% 2998|think this sound signature works really 2999|well<00:16:43.279><c> here.</c><00:16:44.320><c> I</c><00:16:44.639><c> really</c><00:16:44.959><c> do</c><00:16:45.199><c> think</c><00:16:45.279><c> it's</c><00:16:45.519><c> cuz</c> </file-view>
=== MESSAGE 80 - Assistant ===
=== MESSAGE 81 - Tool === <file-view path="/tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt" start_line="470" end_line="952" total_lines="3112"> 470|And then we have the weight, which 471|waterfalls<00:02:16.080><c> I</c><00:02:16.319><c> guess</c><00:02:16.560><c> not</c><00:02:16.720><c> really</c><00:02:16.959><c> waterfalls</c> 472| 473|00:02:17.510 --> 00:02:17.520 align:start position:0% 474|waterfalls I guess not really waterfalls 475| 476| 477|00:02:17.520 --> 00:02:19.270 align:start position:0% 478|waterfalls I guess not really waterfalls 479|in<00:02:17.760><c> this</c><00:02:17.840><c> case,</c><00:02:18.080><c> but</c><00:02:18.480><c> it</c><00:02:18.720><c> almost</c><00:02:18.959><c> acts</c><00:02:19.200><c> like</c> 480| 481|00:02:19.270 --> 00:02:19.280 align:start position:0% 482|in this case, but it almost acts like 483| 484| 485|00:02:19.280 --> 00:02:21.670 align:start position:0% 486|in this case, but it almost acts like 487|the<00:02:19.440><c> little</c><00:02:19.599><c> Tolberone</c><00:02:20.319><c> kind</c><00:02:20.480><c> of</c><00:02:20.560><c> thing.</c> 488| 489|00:02:21.670 --> 00:02:21.680 align:start position:0% 490|the little Tolberone kind of thing. 491| 492| 493|00:02:21.680 --> 00:02:24.150 align:start position:0% 494|the little Tolberone kind of thing. 495|Here's<00:02:22.080><c> the</c><00:02:22.239><c> bottom.</c> 496| 497|00:02:24.150 --> 00:02:24.160 align:start position:0% 498|Here's the bottom. 499| 500| 501|00:02:24.160 --> 00:02:27.110 align:start position:0% 502|Here's the bottom. 503|My<00:02:24.480><c> camera</c><00:02:24.720><c> might</c><00:02:25.040><c> struggle</c><00:02:25.360><c> with</c><00:02:25.599><c> this.</c> 504| 505|00:02:27.110 --> 00:02:27.120 align:start position:0% 506|My camera might struggle with this. 507| 508| 509|00:02:27.120 --> 00:02:29.670 align:start position:0% 510|My camera might struggle with this. 511|Very,<00:02:27.680><c> very</c><00:02:28.080><c> cool.</c><00:02:28.640><c> I</c><00:02:28.959><c> think</c><00:02:29.040><c> there's</c><00:02:29.360><c> plastic</c> 512| 513|00:02:29.670 --> 00:02:29.680 align:start position:0% 514|Very, very cool. I think there's plastic 515| 516| 517|00:02:29.680 --> 00:02:34.710 align:start position:0% 518|Very, very cool. I think there's plastic 519|on<00:02:29.920><c> this.</c><00:02:30.800><c> Should</c><00:02:30.959><c> I</c><00:02:31.120><c> peel</c><00:02:31.360><c> this</c><00:02:31.520><c> off</c><00:02:31.760><c> now?</c> 520| 521|00:02:34.710 --> 00:02:34.720 align:start position:0% 522|on this. Should I peel this off now? 523| 524| 525|00:02:34.720 --> 00:02:37.390 align:start position:0% 526|on this. Should I peel this off now? 527|Ooh, 528| 529|00:02:37.390 --> 00:02:37.400 align:start position:0% 530|Ooh, 531| 532| 533|00:02:37.400 --> 00:02:39.509 align:start position:0% 534|Ooh, 535|[Music] 536| 537|00:02:39.509 --> 00:02:39.519 align:start position:0% 538|[Music] 539| 540| 541|00:02:39.519 --> 00:02:42.150 align:start position:0% 542|[Music] 543|that's<00:02:39.840><c> nice.</c> 544| 545|00:02:42.150 --> 00:02:42.160 align:start position:0% 546|that's nice. 547| 548| 549|00:02:42.160 --> 00:02:43.990 align:start position:0% 550|that's nice. 551|the<00:02:42.560><c> coating</c><00:02:42.879><c> on</c><00:02:43.040><c> this</c><00:02:43.280><c> minus</c><00:02:43.599><c> like</c><00:02:43.760><c> the</c><00:02:43.920><c> one</c> 552| 553|00:02:43.990 --> 00:02:44.000 align:start position:0% 554|the coating on this minus like the one 555| 556| 557|00:02:44.000 --> 00:02:45.670 align:start position:0% 558|the coating on this minus like the one 559|or<00:02:44.160><c> piece</c><00:02:44.400><c> two</c><00:02:44.640><c> pieces</c><00:02:44.879><c> of</c><00:02:45.040><c> dust</c><00:02:45.280><c> that</c><00:02:45.440><c> maybe</c> 560| 561|00:02:45.670 --> 00:02:45.680 align:start position:0% 562|or piece two pieces of dust that maybe 563| 564| 565|00:02:45.680 --> 00:02:47.990 align:start position:0% 566|or pie...[14054 chars truncated]...0 --> 00:04:24.000 align:start position:0% 874|like how it cuts into the board. I 875| 876| 877|00:04:24.000 --> 00:04:25.749 align:start position:0% 878|like how it cuts into the board. I 879|really<00:04:24.240><c> like</c><00:04:24.400><c> how</c><00:04:24.560><c> this</c><00:04:24.720><c> tapers</c><00:04:25.120><c> inwards</c><00:04:25.520><c> as</c> 880| 881|00:04:25.749 --> 00:04:25.759 align:start position:0% 882|really like how this tapers inwards as 883| 884| 885|00:04:25.759 --> 00:04:28.150 align:start position:0% 886|really like how this tapers inwards as 887|well.<00:04:26.639><c> Wonderful</c><00:04:27.040><c> job</c><00:04:27.280><c> on</c><00:04:27.440><c> the</c><00:04:27.600><c> side</c><00:04:27.759><c> profile</c> 888| 889|00:04:28.150 --> 00:04:28.160 align:start position:0% 890|well. Wonderful job on the side profile 891| 892| 893|00:04:28.160 --> 00:04:29.670 align:start position:0% 894|well. Wonderful job on the side profile 895|and<00:04:28.320><c> how</c><00:04:28.479><c> it</c><00:04:28.639><c> kind</c><00:04:28.800><c> of</c><00:04:28.880><c> blends</c><00:04:29.280><c> into</c><00:04:29.520><c> the</c> 896| 897|00:04:29.670 --> 00:04:29.680 align:start position:0% 898|and how it kind of blends into the 899| 900| 901|00:04:29.680 --> 00:04:32.870 align:start position:0% 902|and how it kind of blends into the 903|bottom<00:04:30.000><c> and</c><00:04:30.240><c> even</c><00:04:30.560><c> back.</c><00:04:31.520><c> The</c><00:04:31.840><c> one</c><00:04:32.160><c> thing</c><00:04:32.400><c> I</c><00:04:32.720><c> am</c> 904| 905|00:04:32.870 --> 00:04:32.880 align:start position:0% 906|bottom and even back. The one thing I am 907| 908| 909|00:04:32.880 --> 00:04:35.749 align:start position:0% 910|bottom and even back. The one thing I am 911|still<00:04:33.040><c> not</c><00:04:33.360><c> 100%</c><00:04:34.080><c> sold</c><00:04:34.400><c> on</c><00:04:34.720><c> though,</c><00:04:35.520><c> the</c> 912| 913|00:04:35.749 --> 00:04:35.759 align:start position:0% 914|still not 100% sold on though, the 915| 916| 917|00:04:35.759 --> 00:04:38.310 align:start position:0% 918|still not 100% sold on though, the 919|compass.<00:04:36.639><c> I</c><00:04:36.800><c> guess</c><00:04:36.960><c> I'm</c><00:04:37.120><c> just</c><00:04:37.280><c> not</c><00:04:37.440><c> 100.</c><00:04:37.919><c> I</c><00:04:38.080><c> I</c> 920| 921|00:04:38.310 --> 00:04:38.320 align:start position:0% 922|compass. I guess I'm just not 100. I I 923| 924| 925|00:04:38.320 --> 00:04:40.629 align:start position:0% 926|compass. I guess I'm just not 100. I I 927|just<00:04:38.560><c> I</c><00:04:38.800><c> just</c><00:04:38.960><c> maybe</c><00:04:39.280><c> don't</c><00:04:39.520><c> love</c><00:04:40.080><c> it.</c><00:04:40.320><c> It's</c> 928| 929|00:04:40.629 --> 00:04:40.639 align:start position:0% 930|just I just maybe don't love it. It's 931| 932| 933|00:04:40.639 --> 00:04:43.270 align:start position:0% 934|just I just maybe don't love it. It's 935|actually<00:04:40.880><c> not</c><00:04:41.040><c> as</c><00:04:41.280><c> bad</c><00:04:41.600><c> on</c><00:04:42.000><c> this</c><00:04:42.320><c> board.</c><00:04:43.040><c> I'm</c> 936| 937|00:04:43.270 --> 00:04:43.280 align:start position:0% 938|actually not as bad on this board. I'm 939| 940| 941|00:04:43.280 --> 00:04:45.590 align:start position:0% 942|actually not as bad on this board. I'm 943|not<00:04:43.520><c> sold</c><00:04:43.840><c> on</c><00:04:44.000><c> the</c><00:04:44.160><c> compass.</c><00:04:44.880><c> Cool</c><00:04:45.199><c> though.</c> 944| 945|00:04:45.590 --> 00:04:45.600 align:start position:0% 946|not sold on the compass. Cool though. 947| 948| 949|00:04:45.600 --> 00:04:47.430 align:start position:0% 950|not sold on the compass. Cool though. 951|Very<00:04:45.919><c> very</c><00:04:46.160><c> cool.</c><00:04:46.560><c> So,</c><00:04:46.720><c> let's</c><00:04:46.960><c> take</c><00:04:47.120><c> a</c><00:04:47.280><c> look</c> </file-view>
=== MESSAGE 82 - Assistant ===
=== MESSAGE 83 - Tool === Output from command in shell c6c4d5: 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] utf3wmYr-qo: 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 {"id": "utf3wmYr-qo", "title": "Building The Neo80 Cu", "formats": [{"format_id": "sb3", "format_note": "storyboard", "ext": "mhtml", "protocol": "mhtml", "acodec": "none", "vcodec": "none", "url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L0/default.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCzz7x1Q52-ay3He7fPX_-ezWZiFw", "width": 48, "height": 27, "fps": 0.09671179883945841, "rows": 10, "columns": 10, "fragments": [{"url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L0/default.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCzz7x1Q52-ay3He7fPX_-ezWZiFw", "duration": 1034.0}], "audio_ext": "none", "video_ext": "none", "vbr": 0, "abr": 0, "tbr": null, "resolution": "48x27", "aspect_ratio": 1.78, "filesize_approx": null, "http_headers": {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/140.0.0.0 Safari/537.36", "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8", "Accept-Language": "en-us,en;q=0.5", "Sec-Fetch-Mode": "navigate"}, "format": "sb3 - 48x27 (storyboard)"}, {"format_id": "sb2", "format_note": "storyboard", "ext": "mhtml", "protocol": "mhtml", "acodec": "none", "vcodec": "none", "url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L1/M$M.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCnYGwsZ0Te6ey8TB9FAfnsVe459A", "width": 80, "height": 45, "fps": 0.10154738878143134, "rows": 10, "columns": 10, "fragments": [{"url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L1/M0.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCnYGwsZ0Te6ey8TB9FAfnsVe459A", "duration": 984.7619047619047}, {"url": "https://i.ytimg.com/sb/utf3wmYr-qo/storyboard3_L1/M1.jpg?sqp=-oaymwENSDfyq4qpAwVwAcABBqLzl_8DBgjL0rTHBg==&sigh=rs$AOn4CLCnYGwsZ0Te6ey8TB9FAfnsVe459A", "duration": 49.2380952380953}], "audio_ext": "none", "video_ext": "none", "vbr": 0, "abr": 0, "tbr": null, "resolution": "80x45", "aspect_ratio": 1.78, "fil… (544311 chars truncated)
Exit code: 0
=== MESSAGE 84 - Assistant ===
=== MESSAGE 85 - Tool === Output from command in shell f28e72: WARNING: [youtube] utf3wmYr-qo: Some tv client https formats have been skipped as they are missing a url. YouTube may have enabled the SABR-only or Server-Side Ad Placement experiment for the current session. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details 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] utf3wmYr-qo: 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 WARNING: [youtube] utf3wmYr-qo: Some web client https formats have been skipped as they are missing a url. YouTube is forcing SABR streaming for this client. See https://github.com/yt-dlp/yt-dlp/issues/12482 for more details upload_date: 20251013 channel: alexotos title: Building The Neo80 Cu desc: Keyboard Kit
— Switches \ MX2A Cherry Black Switches https://divinikey.com/products/cherry-mx2a-black-linear-switches?ref=oScu8BXzF73dpE
— Keycaps \ GMK Dandy
Note: Some of these are affiliate links and i get a kick back! They help support my channel. This is a sponsored review, but all opinions shared are entirely my own and remain unbiased.
LEARN HERE: ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ How to Lube Stabs — https://www.youtube.com/watch?v=vxHb6CJc9V8 How to Lube Switches — https://www.youtube.com/watch?v=88tnUYbxaIs Find me live here: https://www.twitch.tv/alexotos
MY STUFF: ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ 📷 My Streaming Gear: https://kit.co/alexotos/streaming-gear 👕 Merch: https://shop.alexotos.com/ ➡️ My Building Equipment: https://kit.co/alexotos/building-equipment ➡️ What I use for keycap storage: https://amzn.to/3fGvdZq
SPONSORS / AFFILIATE LINKS ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ https://kineticlabs.store/alexotos https://bowlkeyboards.com/ https://kibou.store/alexotos https://kbdfans.com/r?id=meguep https://omnitype.com/alexotos https://modedesigns.com/alexotos https://unikeyboards.com/?sca_ref=5348849.iPIMLKwswJ https://whiplashdesign.eu/ https://www.deskhero.ca?aff=8
COME HANGOUT ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ Discord: https://discord.gg/alexotos
SOCIALS! ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ https://www.alexotos.com https://www.instagram.com/alexotos https://twitter.com/otosalex https://www.twitch.tv/alexotos
Exit code: 0
=== MESSAGE 86 - Assistant ===
=== MESSAGE 87 - Tool === Found 6 match(es) for pattern '(cost|price|$|dollar|USD|quid|bucks)' in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt: -- 6 matches in /tmp/Building The Neo80 Cu [utf3wmYr-qo].en.vtt 653|00:03:12.560 --> 00:03:16.070 align:start position:0% 654|Now, I'm curious to see what this
655|particular<00:03:13.280><c> cost</c><00:03:13.599><c> is</c><00:03:13.840><c> for</c><00:03:14.080><c> this</c><00:03:14.239><c> unit.</c> 656| 657|00:03:16.070 --> 00:03:16.080 align:start position:0% 658|particular cost is for this unit. 659| 660| 661|00:03:16.080 --> 00:03:19.910 align:start position:0% 662|particular cost is for this unit. 663|So,<00:03:16.480><c> right</c><00:03:16.640><c> away,</c><00:03:17.440><c> okay,</c><00:03:18.400><c> I</c><00:03:18.720><c> don't</c><00:03:19.440><c> I</c><00:03:19.760><c> don't</c> 664| ... 2869|00:16:08.079 --> 00:16:11.189 align:start position:0% 2870|and there's not a single iteration of 2871|this<00:16:08.399><c> that</c><00:16:08.720><c> goes</c><00:16:08.959><c> above</c><00:16:09.440><c> $299</c> 2872| 2873|00:16:11.189 --> 00:16:11.199 align:start position:0% 2874|this that goes above $299 2875| 2876| 2877|00:16:11.199 --> 00:16:13.110 align:start position:0% 2878|this that goes above $299 2879|unless<00:16:11.519><c> you're</c><00:16:11.680><c> getting</c><00:16:11.839><c> extra</c><00:16:12.160><c> pieces.</c> 2880|
=== MESSAGE 88 - Assistant ===
=== MESSAGE 89 - Tool ===
URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard
Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ...
... Canada: Unikeys, Keybay and deskhero.ca ... Oct 10th) ... later as QK)Korea ... day later as QK) ... ): KeebzNC ... , BerserKeys and Gara Studio (same day or ... day later as ... QK AustraliaSingapore and Pakistan: ... op, Ktechs, Pantheon ... Coffeekeys, Eloquent, Delta and Keygem(same day or a day later ... : Protot ... Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ...
... Brass/Copper Bottom Case: +$20 USD ...
... The Neo80 Cu is built around the beloved 80% layout, a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... Despite its large 80% layout, we've maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Neo80 ... Not only are we bringing back the fan-favorite Teal from the Neo series, but we’re also introducing a stunning lineup of fresh colors — Slate Blue, Taupe Grey, Dusty Rose, Jade, and Ruby Rose, giving you even more ways to make your keyboard truly yours. ...
URL: https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys
[GB] Neo80 CU by Qwertykeys – pantheonkeys ...
... Group Buy Period: 10th Oct - 10th Nov 2025Estimated Fulfilment: Q1 2026
URL: https://divinikey.com/products/qwertykeys-neo80-cu-keyboard
Qwertykeys Neo80 Cu Keyboard – Divinikey ...
... Neo80 Cu is upon us after popular demand for the TKL layout in the Cu lineup. Coming in either a brass or copper bottom, the case has been treated with a tuned internal structure which helps to reduce hollowness and have a more nature acoustic. The Neo80 Cu also introduces some new features for Neo, from the new plate options, PEI and glossy-chamfered aluminum, to the new Poron gaskets. ... Qwertykeys Neo80 Cu Keyboard Features: ... Disclaimer: Neo80 Cu Keyboard are kitted to order and completely custom. Orders are not able to be canceled once the batch period has ended. ...
... Built around the beloved 80% layout, this keyboard is a proven favorite among professionals and enthusiasts who prioritize efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ...
... Despite its large 80% layout, Neoworks has maintained the Cu series's signature all-copper bottom design—bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Like most Neo keyboards, the bottom case features a partitioned acoustic chamber to minimize hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without any foam. ... Poron Gasket structure has been integrated into the Neo80 Cu. Unlike traditional Poron Gaskets that require gluing to the case, the Neo80 Cu was designed with special grooves in the bottom case to securely hold the Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional durability over time. Silicone gasket mount structure is also retained, as an alternative option for those who prefer it. ...
– UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order
Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... Qwertykeys ...
...
... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
– SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order
Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ...
... $195.00 Sale • Save ... The Neo80 Cu is built around the beloved 80% layout, a proven favourite among professionals and enthusiasts who prioritise efficiency and functionality. This layout offers the perfect balance between compact design and practical usability, making it ideal whether you're upgrading your workspace or seeking a reliable daily driver. ... Full Copper & ... Despite its large 80% layout, we've maintained the Cu series' signature all-copper bottom design, bringing the keyboard's total weight to approximately 4.5 kg when fully assembled. ... Like most Neo keyboards, the bottom case features a partitioned acoustic chamber to minimise hollowness. Forcebreak pads at all contact points reduce vibration and metallic noise, and, combined with the copper base, deliver the deep, clean "copper bottom" typing sound that Neo fans love, without the use of foam. ... Inspired by massive celestial bodies, whose gravity warps surrounding space, the Neo80 Cu's top case features a multi-layered "star ring" light that captures the brilliance of a planet against the dark night sky.The central "planet" features a triple-etched aluminium finish, surrounded by a mirrored stainless-steel ring, creating a striking "floating planet" effect. ... On the back, the intersection of the weight and the bottom case features a carefully sculpted slope that softens transitions. The compass-inspired Cu series logo sits in the centre, showcasing the iconic symbolism of the Neo brand. ... We've integrated the Poron Gasket structure into the Neo80 Cu. Unlike traditional Poron Gaskets that require gluing to the case, we've designed special grooves in the bottom case to securely hold the Poron Gaskets in place. This innovation allows for hassle-free replacement and ensures exceptional durability over time. Of course, we've also retained the silicone gasket mount structure as an alternative option fo...
=== MESSAGE 90 - Assistant ===
=== MESSAGE 91 - Tool ===
[[Deskhero Inc logo]][1] [[Deskhero Inc logo]][2] [English (US)] English (US) [All articles][3] [Group Buy Shipping Updates][4] Group Buy Keyboard Updates Search All articles
View:
───────────────────────────┬────────────────────────────────────────────────────────────────────────
Product Name │Status / Notes
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Zoom64 Keyboard │Shipping complete
───────────────────────────┼────────────────────────────────────────────────────────────────────────
ND104 Keyboards │Estimated shipping July
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Bauer Lite 65% Keyboard │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Boog75 Keyboard │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Bridge 75 Keyboard Batch 1 │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Bridge 75 Keyboard Batch 2 │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Bridge 75 Keyboard March │Shipping complete.
Batch /Batch 3 │
───────────────────────────┼────────────────────────────────────────────────────────────...[2204 chars truncated]...───────────────────
Choice 65 Keyboard │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
CKW80 Keyboard │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Class65 V3 Keyboards │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Cloudline Mechanical │Shipping complete. Build Guide:
Keyboard │https://jjwkb.com/pages/cloudline-assembly
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Crin Mechanical Keyboard │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Crush80 Keyboard │Shipping complete.
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Crush80 Keyboard March │Shipping complete.
Batch │
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Cyberpunk BOX60 Keyboard │Shipping complete.
Case and Stand │
───────────────────────────┼────────────────────────────────────────────────────────────────────────
Derivative R1 Keyboard │Shipping complete.
───────────────────────────┼───… (207 chars truncated)
… (199 lines truncated)
<truncation_notice>
Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/14c36ad4/content.txt
</truncation_notice>
=== MESSAGE 92 - Assistant ===
=== MESSAGE 93 - Tool === Found 1 match(es) for pattern 'Neo80 Cu' in /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/14c36ad4/content.txt: -- 1 matches in /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/14c36ad4/content.txt 180|───────────────────────────┼────────────────────────────────────────────────────────────────────────
181|Neo80 Cu Keyboard Batch 2 │Shipping complete. 182|───────────────────────────┼────────────────────────────────────────────────────────────────────────
Now summarize the conversation above as per the format given. Remember, do NOT take any actions. Just provide the summary in <summary> tags.
Prototypist has "Neo80 Keyboard Kit Batch 1" (non-Cu) pre-order closes Jan 31 2025, expected Q2 2025. Wait this is confusing: regular Neo80 Batch 1 pre-order closes Jan 31 2025. Earlier web search said Neo80 pre-order open May 2024. Maybe the Prototypist Batch 1 is a later restock. The regular Neo80 had many batches. The Cu version first appears at Prototypist as a pre-order ending Nov 30 2025 (Batch 10 maybe). Hmm. Maybe the answer: Neo80 Cu was released around October 10, 2025, starting at $209 USD, with no configuration above $299 (without extras), per the alexotos video. Later price adjusted to $259.99 base (current). The user may be conflating with regular Neo80 which had batches from May 2024. We should clarify. But user asked originally "search the web, when the neo80 cu released, how much was it selling for?" We should answer with best evidence. Then after they corrected with video, we need incorporate video. Let's also get more context from video: maybe channel alexotos states "starts at 209" but also could mention "It is going to be $209 starting". We should provide summarized price and release date. We need determine if the $209 is at original release or in the video as current. The video upload date is 2025-10-13, likely during group buy. The Qwertykeys page (regional vendors "Oct 10th") suggests the group buy launched Oct 10 2025. The video states "starts at 209". So at release (Oct 2025), starting price was $209. The product page currently says $259.99, with a July 1st price adjustment. But the video may predate the adjustment. But the user "i swear it released before that" might be from seeing UniKeys Batch 2 Jan 2025. We need address that. Let's directly investigate UniKeys Batch 2 page for price $154.99. That could be an earlier release price. But the page says "Batch 2" and "Global Pre-order Date: Jan. 13th, 2025". If that's real, then original release might have been in late 2024/early 2025. The video from Oct 2025 would be a later batch. However, the video says "starts at 209". Maybe the Jan 2025 batch was cheaper? $154.99 seems much lower than $209. Could be a different currency or base? It says USD. Hmm. Why would price jump from $154.99 to $209? Maybe because the Jan 2025 page is for "Batch 2 Pre-Order" of a different product? Let's open UniKeys Batch 2 page in a browser? Already fetched but output huge. Search for price "154.99" in the overflow file.
{
"pattern": "154\\.99|209|Pre-order Date|Global Pre-order|Batch 2",
"path": "/var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/00ddff57/content.txt",
"case_insensitive": true,
"output_mode": "content",
"max_results": 20,
"context_lines": 1
}Found 20 match(es) (limited by max_results) for pattern '154\.99|209|Pre-order Date|Global Pre-order|Batch 2' in /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/00ddff57/content.txt: -- 20 matches in /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/00ddff57/content.txt 211| * ### [Shop By SWITCH TYPE][208] >212| * [Linear Switches][209] 213| * [Tactile Switches][210] ... 276|1 / 1 >277|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >278|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >279|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >280|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >281|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >282|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >283|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >284|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >285|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >286|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >287|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >288|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >289|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >290|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >291|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >292|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >293|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >294|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order] >295|* [Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order]
The agent has gathered various pieces of information regarding the release dates and pricing of the Neo80 Cu, but there's some ambiguity due to multiple pre-order batches, different vendors, and the "Cu" variant. The agent is trying to reconcile these discrepancies to provide a definitive answer for the first release and its original price.
</summary>The overflow is not product details? Hmm maybe truncated before details. Need fetch product page with less noise? Could use curl with user-agent? But webfetch gave huge nav. Maybe use parameter to strip? Not. Could use `yt-dlp` not relevant. Could use `curl -s` and grep? But instructions not use shell for file operations; but webfetch already did. We can try to fetch specific page with `?view=quick`? Not. Use `web_search` to get snippet with price and date.
{
"query": "\"Neo80 Cu\" \"$154.99\" \"Global Pre-order Date\" \"Jan. 13th, 2025\""
}# Web Search Results for ""Neo80 Cu" "$154.99" "Global Pre-order Date" "Jan. 13th, 2025"" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... $154.99 USD ... $154.99 USD ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ## 2. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/en-ie/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... 0 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order ## 3. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ## 4. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit ) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... £158.33 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... Pre-Order ... Pre-Order Ends: 30th November 2025 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ... These products are set to be shipped out at the date specified above, but please check our updates for the latest information. ## 5. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard # Neo80 Cu Custom Mechanical Keyboard ... $259.99 ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... - $259.99 ... This is a pre-order product. ... ### Neo80 Cu
We have conflicting price points: UniKeys Batch 2 Jan 2025 $154.99; SwitchKeys $195; Prototypist £158.33; Qwertykeys $259.99 current; alexotos video says starts at 209. Need understand pricing tiers and release waves. Maybe the $154.99 is a sale/extras price for "Batch 2" after price adjustments? Or maybe the product was cheaper initially in Jan 2025, then increased. But video from Oct 2025 says starts at 209. So if Jan 2025 $154.99, then later price increased to $209? That seems odd. Unless $154.99 is for a barebones "without plate" or something. The UniKeys product title is "BATCH 2 Pre-Order" and "From $154.99 USD" likely starting price. It might not include plate? Wait Qwertykeys current base $259.99 includes PCB? The video at start says "starts at 209". The UniKeys Batch 2 Jan 2025 starting at $154.99 could be an error due to not selecting bottom? Hmm. Let's search within UniKeys product page for variant prices maybe. Use webfetch with view-source? Use curl? We can use exec with python requests to get page and parse with BeautifulSoup? But might be overkill. But to answer user we need not settle every price. We can summarize. But user says "search the web, when the neo80 cu released, how much was it selling for?" Then after I mention Oct 2025, "i swear it released before that". They sent YouTube video. Need maybe the video itself contains release info in description? Description just affiliate links, no date. But video upload date 2025-10-13. So it doesn't support earlier release. Maybe the user is wrong; the video doesn't show earlier release. But perhaps the video is a build of a unit from a batch that had already released. However the video is sponsored, likely on launch. Let's search web for "Neo80 Cu release date 2025" and "Neo80 Cu first batch".
{
"query": "\"Neo80 Cu\" \"released\" \"2025\" \"Qwertykeys\""
}# Web Search Results for ""Neo80 Cu" "released" "2025" "Qwertykeys"" ## 1. Qwertykeys Neo80 vs Neo80CU: Premium TKL Kit Comparison URL: https://keeb-finder.com/keyboards/compare/neo80-tkl-iso-ansi-aluminium-keyboard-kit-in-stock-extras-vs-qwertykeys-neo80-cu-keyboard Qwertykeys Neo80 vs Neo80CU ... Qwertykeys Neo80 vs Neo80CU Differences Side by Side ... - Released in 2025 - Built with the ANSI layout standard - Equipped with a 4400 mAh battery - Made with a Aluminum, Brass, Copper case - Released in 2026 - Built with the ANSI, ISO layout standard - Supports VIA configuration - Runs at a 1000 Hz polling rate - Equipped with a 2200 mAh battery - Made with a Aluminum, Copper, Brass case ... Qwertykeys Neo80 ... Qwertykeys Neo80CU ... 2025 ... 2026 ... Your choice depends on how much you value confirmed high-performance specs and layout flexibility. The Neo80CU is the definitive pick if you need ISO support or want the assured 1000Hz polling rate for gaming. If you are content with ANSI and prioritize value while still getting the exceptional build and sound of this TKL platform, the standard Neo80 is the sensible choice. ... ### Qwertykeys Neo80 ... - +More affordable entry point into the premium Neo80 platform. - +Includes a larger 4400mAh battery according to its specifications. - +Shares the same high-quality aluminum top case and copper/brass bottom construction. - +Offers the same flexible Poron, silicone, and top mounting systems. - +Comes with a comprehensive accessory kit including a case, tools, and stabilizers. ... ### Qwertykeys Neo80CU ... - +Manufacturer listing confirms a 1000Hz polling rate for wired and 2.4GHz use. - +Officially supports both ANSI and ISO layouts for greater keycap compatibility. - +Features visual accents like the 'Star Ring Accent Light' on the front, according to its vendor page. - +Includes a wider selection of bottom weight finishes (e.g., Mirror Dusk, Machining Mark). - +Retains the same premium material quality and acoustic chamber design. ... significantly higher price tag ... −Has a smaller ... 2200mAh battery ... standard Neo80's ... weight (4 ... Neo80CU ... Neo80CU ... 80CU ... Neo80CU ## 2. Firmware and Software – QWERTYKEYS AU URL: https://www.qwerty-keys.com.au/pages/firmware-and-software right-click and save) ... and save) - Neo80 | Tri-mode ANSI - JSON (right-click and save) - Firmware(flash with QMKToolbox Beta) ... - Neo Ergo | Tri-mode ... - JSON (right-click and save) - Firmware(flash with QMKToolbox Beta) - 2.4g indicator fix - Neo80 Cu | Tri-mode ANSI - For the ANSI tri-mode PCB, please update the firmware first before using the JSON file ... - JSON (right-click and save) - firmware (right-click and save) ... ### Qwertykeys ... - QK65 Mk3 - Firmware v1.2.1(8k&1k)(right-click and save) - Update Instructions:Choose one of the two master files (1k or 8k) to update, and ensure the PLC file is also updated in sync. - HEX80 - ATK HUB - New Version (1.32) Firmware ## 3. Qwertykeys Neo80 Starting at $172.99 - Best Deals URL: https://keeb-finder.com/keyboards/neo80-tkl-iso-ansi-aluminium-keyboard-kit-in-stock-extras Qwertykeys Neo80 Starting ... # Qwertykeys Neo80 Mechanical Keyboard ... The Qwertykeys Neo80 ISOANSI is a customizable 80% TKL mechanical keyboard kit suited for hobbyists who want to build a versatile keyboard with both ISO and ANSI layouts. It fits users who value wireless and wired connectivity options, modular mounting styles, and a screwless assembly process. This board requires separate purchase of switches and keycaps, making it ideal for those comfortable with keyboard assembly and customization.</p... Read more ... Qwertykeys Neo80 Cu Keyboard ... Qwertykeys Neo80 ... | Vendor | Location | Coupon Code | In Stock | Price (USD) | Link* | | --- | --- | --- | --- | --- | --- | | Qwertykeys Neo80 Cu Keyboard | | Qwertykeys Neo80 | | ? | ... - Released in 2025 - Built with the ANSI layout standard - Supports Bluetooth, 2.4 GHz, Wired, Wireless connectivity - Equipped with a 4400 mAh battery - Weighs about 4500 g - Sized at 18 x 356 x 134 mm - Made with a Aluminum, Brass, Copper case - Offers No RGB lighting ... - Released in 2023 - Has Magnetic, Linear, Tactile, Clicky switch options ... - Available in a 75% layout ... - Built with the ISO, ISO-UK, ISO-Nordic, ISO-SW, ISO-ES, ISO-FR, ISO-IT, ISO-DE, ANSI, JIS layout standard ... - Released in 2024 - Has Mechanical switch options - Built with the ANSI, ISO-DE, ISO layout standard - Weighs about 1120 g - Sized at 37 x 358 x 141 mm - Made with a Aluminum, Polycarbonate case - Features PBT, ABS keycaps - Offers Yes, Rgb, South-face, Rgb South-face RGB ... Qwertykeys Neo80 ... 2025 ... 2024 ... The Qwertykeys Neo80 ISOANSI is a customizable 80% TKL mechanical keyboard kit suited for hobbyists who want to build a versatile keyboard with both ISO and ANSI layouts. It fits users who value wireless and wired connectivity options, modular mounting styles, and a screwless assembly process. This board requires separate purchase of switches and keycaps, making it ideal for those comfortable with keyboard assembly and customi... ## 4. Qwertykeys Neo80CU vs Sikakeyb SK5: Premium Kit vs Budget Entry URL: https://keeb-finder.com/keyboards/compare/qwertykeys-neo80-cu-keyboard-vs-sikakeyb-sk5-mountain-city-aluminum-transparent-84keys-keyboard-kit Compare Qwertykeys Neo80CU ... Sikakeyb SK5 Mountain City Differences Side by Side ... This comparison is for keyboard enthusiasts deciding between a high ... end custom kit and ... basic budget option. ... Qwertykeys Neo80CU ... substantial investment with premium materials and ... is a much more ... starting point. ... decision hinges on whether you value wireless connectivity, ... - Released in 2025 - Supports hot-swappable switches - Available in a 80% layout - Built with the ANSI, ISO layout standard - Connects via USB-C - Features N-key rollover - Has built-in sound dampening - Uses a Gasket Mount mounting style - Supports Bluetooth, 2.4 GHz, Wired, Wireless connectivity - Runs at a 1000 Hz polling rate - Equipped with a 2200 mAh battery - Weighs about 4500 g - Sized at 18 x 356 x 134 mm - Made with a Aluminum, Copper, Brass case ... - Released in 2022 - Available in a 75% layout - Built with the ANSI layout standard - Made with a Aluminum, Plastic case ... Qwertykeys Neo80CU ... Sikakeyb SK5 Mountain City ... 2025 ... 2022 ... Your budget and intended use decisively split these two keyboards. Invest in the Qwertykeys Neo80CU if you want a premium, wireless, and highly tunable keyboard for a permanent desk setup. Choose the Sikakeyb SK5 Mountain City only if your goal is to spend as little as possible on a basic custom keyboard kit for a first build or a secondary location. ... ### Qwertykeys Neo80CU ... - +Premium materials including anodized aluminum top case and copper or brass bottom case. - +Extensive connectivity with tri-mode wireless (Bluetooth, 2.4 GHz) and wired USB-C. - +Highly customizable with three mounting styles, multiple plate options, and acoustic tuning features. - +Includes a comprehensive accessory kit with case, tools, stabilizers, and foam. - +Substantial 4.5 kg weight and 8-degree typing angle for a stable, comfortable experience. ... The Qwertykeys Neo80CU is the clear choice for most dedicated use cases, particularly gaming, office wo... ## 5. QK101 vs Neo80CU: Full-Size Screen vs Heavy TKL Build URL: https://keeb-finder.com/keyboards/compare/qk101-100-iso-ansi-mechanical-aluminium-keyboard-kit-vs-qwertykeys-neo80-cu-keyboard - Released in 2025 - Available in a 100% layout - Includes a Yes, TFT, OLED display - Includes screw-in stabilizers - Uses a Top Mount mounting style - Runs at a 4000 Hz polling rate - Equipped with a 8000 mAh battery - Weighs about 2000 g - Sized at 50 x 440 x 140 mm - Made with a Copper, Aluminum case - Offers Yes, Rgb RGB lighting ... - Released in 2026 - Available in a 80% layout - Includes a No display - Features N-key rollover - Uses a Gasket Mount mounting style - Runs at a 1000 Hz polling rate - Equipped with a 2200 mAh battery - Weighs about 4500 g - Sized at 18 x 356 x 134 mm - Made with a Aluminum, Copper, Brass case - Offers No RGB lighting ... Qwertykeys Neo80CU ... 2025 ... 2026 ... Your decision should be guided by layout needs and intended use. The Qwertykeys QK101 is the clear choice for users who require a full-size keyboard, value the latest high-performance specs like a 4000Hz polling rate, and want a customizable screen. The Neo80CU is for enthusiasts who prefer a TKL form factor, prioritize a meticulously tuned acoustic signature from its heavy metal construction, and are willing to trade some modern features for that focused experience. ... ### Qwertykeys Neo80CU ... - +Premium material construction with aluminum, copper, and brass options. - +Acoustic chamber design with integrated forcebreak pads for sound tuning. - +Compact 80% TKL layout saves desk space. - +Offers multiple plate material choices including carbon fiber and plastic. - +Includes a protective carrying case in the kit. ... The QK101 wins in scenarios demanding a numpad, high-speed inputs, or extensive programmability, making it strong for gaming, office work, and content creation. The Neo80CU's primary advantage is its compact TKL form factor, which is better for travel and saving desk space, though its extreme weight is a notable trade-off. For programming, the choice is a matter of layout preference, as both offer core customization features. ... TravelQwertykeys Neo80CU ......
KeebFinder says Neo80 (standard) released 2025, Neo80CU released 2026 in one comparison, and in another Neo80CU released 2025. These are approximate. It seems data is not reliable. The Qwertykeys product page "Oct 10th" and video upload 2025-10-13 are strong. But the user swears earlier. Maybe the user thinks "Neo80 Cu" is the same as "Neo80" which had earlier batches. We should clarify distinction. Maybe there is a "Neo80 Cu" first batch from January 2025 at $154.99, and a later October 2025 "re-release" or new colors at $209. Let's search for "Neo80 Cu January 2025" more.
{
"query": "\"Neo80 Cu\" \"January 2025\" pre-order"
}# Web Search Results for ""Neo80 Cu" "January 2025" pre-order" ## 1. NEO80 CU MECHANICAL KEYBOARD KIT – ELOQUENT CLICKS URL: https://eloquentclicks.com/products/neo80-cu-mechanical-keyboard-kit # NEO80 CU MECHANICAL KEYBOARD KIT ... - Preorder ... NEO80 CU is a TKL mechanical keyboard kit part of the CU premium series. A proven favorite among enthusiasts looking for functionality and great design. NEO80 CU features a solid copper bottom case that delivers both striking visual appeal and satisfying weight. This foundation not only looks premium but also creates the ideal acoustic base for a crisp, pure typing sound. ... Regular price €23900 ... Regular price Sale price €23900 ... Preorder ends January 2nd. Shipping Estimates around 2-3 months after ordering. ## 2. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... Pre-Order ... a later date ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture ar... ## 3. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 4. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu ... # Neo80 Cu Custom Mechanical Keyboard ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Neo80 Cu ## 5. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Item is in stock Only 0 left in stock Item is out of stock Item is unavailable ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly
Eloquent Clicks says "Preorder ends January 2nd" but year not clear. Could be Jan 2026? Regular price €239.00 (maybe 23900 cents display). Preorder ends January 2nd. No year. The conflicting data may be due to multiple batches/restocks and regional pricing. User wants a simple answer. We need probably answer: The Neo80 Cu's first general release was around October 10-13, 2025, with a starting price of $209 USD (and no fully-built configuration above $299 unless you add extras), per the alexotos launch video and Qwertykeys page. Current Qwertykeys price is $259.99, with a July 1st price adjustment. There are also earlier/later regional batch prices (e.g., UniKeys Batch 2 at $154.99 in Jan 2025, Prototypist £158.33, etc.), but $209 was the launch MSRP for the initial Cu release. But wait the UniKeys Batch 2 Jan 2025 being $154.99 is earlier and cheaper. If that's correct, then the statement "first release Oct 2025 at $209" would be wrong. We need resolve. Let's inspect UniKeys Batch 2 page more carefully. Maybe it is not a pre-order page but an "extras" leftover from a previous batch, and the dates are for ordering window. The "Global Pre-order Date: Jan. 13th, 2025" suggests it was a pre-order, but if it's "Batch 2", then Batch 1 would be earlier. Could Batch 1 have been in 2024? Let's search for "Neo80 Cu batch 1" on UniKeys.
{
"query": "site:unikeyboards.com \"neo80-cu-custom-mechanical-keyboard\" \"batch-1\""
}# Web Search Results for "site:unikeyboards.com "neo80-cu-custom-mechanical-keyboard" "batch-1"" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... $154.99 USD ... Top Case: WK ... WK WKL ... Bottom Case: Brass ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... 6 weeks after pre-order ends ... Typing angle: 8 degree ... Front height: 1 ... Size: 80% TKL**,** 355.5mm * 134 mm ... Layout: WK/WKL ... ****4.5 ... Brass weight + Brass bottom: 5.3kg ... Copper weight + Copper bottom: 5.415kg ... - PCB of your choice - 1x PE sheet - 1x PCB foam - Tri-mode PCB comes with a 2.4GHz dongle ... Plate of your choice ... on case foam ... 9x Silicone gaskets ... 9x long Poron gaskets, 18x short Poron gaskets and Top-mount mounting screws ## 2. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/en-ie/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... Top Case: WK ... WK WKL ... Bottom Case: Brass ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Typing angle: 8 degree ... Front height: 1 ... Size: 80% TKL**,** 355.5mm * 134 mm ... Layout: WK/WKL ... ****4.5 ... Total weight ****including ... Brass weight + Brass bottom: 5.3kg ... Copper weight + Copper bottom: 5.415kg ... - PCB of your choice - 1x PE sheet - 1x PCB foam - Tri-mode PCB comes with a 2.4GHz dongle ... Plate of your choice ... Poron case foam ... 9x Silicone gaskets, 9x long Poron gaskets, 18x short Poron gaskets and Top-mount mounting screws ## 3. QWERTYKEYS Neo75 CU Keyboard Kit - Build Your Own Custom Mechanical Keyboard – UniKeys URL: https://unikeyboards.com/products/qwertykeys-neo75-cu-keyboard-kit QWERTYKEYS Neo75 CU Keyboard Kit - Build Your Own Custom Mechanical Keyboard – UniKeys ... # QWERTYKEYS Neo75 CU KEYBOARD KIT ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Timeline:Pre-order Starts: January 10th, 2025 ... Pre-order Ends: January 20th, 2024 (Or until allocated slots run out) ... - The tri-mode PCB on this sale page comes with two 2200 mAh batteries. ... - To modify your Neo75 Cu specifications, please don't adjust quantities in the shopping cart. Instead, return to the product page and add the new option to your shopping cart again. ... one unit per order. If you wish to purchase multiple units, please place separate orders. If you're placing multiple orders for delivery to different addresses, please use separate accounts for each order. Our logistics system automatically consolidates all orders under the same account and ships them to a single destination. This feature helps combine extra parts orders and allows you to take advantage of free shipping. ... ## Content List ... - Includes one pre-installed circular accent badge of your choice on the back - Includes one pre-installed square decorative badge on the top right corner - For orders with tri-mode PCBs, two 2200 mAh batteries come pre-installed in the battery compartment - For orders with wired PCBs, two stainless steel fillers come pre-installed in the battery compartment - For orders with solder PCBs, two foam fillers come pre-installed in the battery compartment. If you purchase the stainless steel battery compartment fillers in the extra part page, foam pack will no longer be included. ... - PCB of your choice - 1x PE sheet - 1x PCB Foam - Tri-mode PCB comes with a 2... ## 4. Neo75 Custom Mechanical Keyboard Kit (Pre-Order) – UniKeys URL: https://unikeyboards.com/products/neo75-custom-mechanical-keyboard-kit-pre-order Neo75 Custom Mechanical Keyboard Kit (Pre-Order) – UniKeys ... # Neo75 Custom Mechanical Keyboard Kit (Pre-Order) ... ## Neo75 ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Estimated Shipping Date: In around 8 weeks after pre-order ends ... For orders with tri-mode PCBs, two 2200 mAh batteries come pre-installed in the battery compartment. ... - PCB of your choice - 1x PE sheet - 1x PCB foam - Tri-mode PCB comes with a 2.4GHz dongle ... - Keyboard carrying case - Keyboard pouch - 1x Keycap & Switch puller - 1x Screwdriver - 1 set of PCB clip-in NeoStab - USB-C cable ## 5. QWERTYKEYS NEO 65 CU KEYBOARD KIT – UniKeys URL: https://unikeyboards.com/products/qwertykeys-neo-65-cu-keyboard-kit # QWERTYKEYS NEO 65 CU KEYBOARD KIT ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Batch 1Pre-order Date: Feb. 28th, 2025 ... Pre-order End Date: March 14th, 2025 ... Estimated Shipping Date: April 25th, 2025 ... Batch 2Pre-order Date: March 15th, 2025 ... Pre-order End Date: March 30th, 2025 ... Estimated Shipping Date: May 25th, 2025 ... - The Neo65 Cu and Neo60 Cu are the latest additions to the Neo Cu ... , featuring ultra-slim side bezels with a full brass/copper bottom case and elegant curved designs.
UniKeys Neo65 Cu Batch 1 Feb 2025, Batch 2 March 2025. For Neo80 Cu, only Batch 2 Jan 2025. Hmm maybe there was a Batch 1 in Dec 2024? Let's search "Neo80 Cu Batch 1 UniKeys" without site.
{
"query": "\"Neo80 Cu\" \"Batch 1\" \"UniKeys\" \"Pre-order\""
}# Web Search Results for ""Neo80 Cu" "Batch 1" "UniKeys" "Pre-order"" ## 1. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... $154.99 USD ... Out of stock ... $154.99 USD ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 2. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/en-ie/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... €167,58 EUR ... Out of stock ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 3. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu Custom Mechanical Keyboard – Qwertykeys ... # Neo80 Cu Custom Mechanical Keyboard ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$2 ... ## Neo80 Cu ... - Typing angle:8 degree ... - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm ... - Layout: WK ... - Weight: ... 4.5 kg after assembly ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Item is in ... 0 left in ... Item is out of ... Item is unavailable ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... The Neo80 Cu ... built around the beloved ... 80% layout ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly ... Short Poron ## 5. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... checking this box that ... have read the terms, FAQ's, and conditions and disclaimers below. I understand that this is a Pre-Order and will ship at a later date, that these orders cannot be cancelled due to their bespoke nature and that updates are always available from the Support Menu. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item....
No Batch 1. Maybe the original release for Neo80 Cu was indeed Jan 2025, but it's labeled Batch 2 because there was an initial sample/batch 1 for reviewers? The video from alexotos in Oct 2025 would be Batch 10? Wait Prototypist has Batch 10 ending April 2026. So the product has been around for many batches. It could have started earlier than Jan 2025 (e.g., Batch 1 in 2024). The video from Oct 2025 may be sponsored for a new batch/colors, not original release. We need find earliest evidence. The Qwertykeys product page has "Regional Vendors" with "(Oct 10th)". Which year? Since the page currently shows price adjustment "July 1st" and product variant top case $64.99? Wait Qwertykeys product page variant list shows "WK / Anodized Silver - $64.99" etc. That seems like the top case price? Actually product price $259.99. The variants show top case price maybe extra? The main price includes? Let's not get lost. Maybe the Qwertykeys page "Oct 10th" without year could be the next drop date. Today is July 2026, so Oct 10th likely 2025 or 2026? The price adjustment is July 1st (maybe upcoming 2026). If current date is 2026-07-16, the price adjustment at July 1st likely has already happened or will happen soon? It says "The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT." Since July 1 2026 has passed (12 days ago), the page might still show pre-adjustment price until then? Actually $259.99 current. The adjustment might be in effect. The Oct 10th in vendors list maybe old. Let's fetch the Qwertykeys product page with Wayback? Not possible. But maybe we can use the description from product page. It doesn't list release date. The most credible original source for release date/price might be the YouTube video. Since the user explicitly sent it, we should use it. But the video doesn't explicitly state release date, only price. However the video's upload date (2025-10-13) can serve as when the content/review came out, which likely coincides with release. The video says "starts at 209" and "not a single iteration above $299 unless extras". We can answer that. Also mention the web search showing group buy period Oct 10 - Nov 10 2025. But the user might be expecting: "It released October 10 2025 for $209". The alexotos video supports starting price $209. We can say "According to alexotos' build video (uploaded Oct 13, 2025), the Neo80 Cu started at $209, and no stock config went above $299 without extras." But for release date, we need say the Qwertykeys/Pantheon group buy period was Oct 10 - Nov 10 2025. Should we also note earlier batch? The user said "i swear it released before that". We can say: "The earliest Cu-specific pre-order I can find is a UniKeys 'Batch 2' dated Jan 13-20, 2025 at $154.99, which would mean an even earlier Batch 1 existed. However, the widely promoted launch/wave tied to the Oct 2025 group buy started at $209. If you're thinking of the regular Neo80 (non-Cu), that launched May 2024 for ~£85/$100." This addresses user's belief. But we should verify the UniKeys Batch 2 Jan 2025 date is indeed earlier and price. It says $154.99. Could be true. But why does alexotos say starts at 209 in Oct 2025? Maybe because after price adjustments. The Qwertykeys page currently says price adjustment July 1st; maybe the Jan 2025 batch was before adjustment. Wait current date is 2026-07-16. The price adjustment "July 1st" could have been in 2025 or 2026. The video is Oct 2025, after July 1 2025, so if there was a July 1 2025 price adjustment, the starting price in Oct 2025 would be post-adjustment $209. But if Jan 2025 batch was $154.99, then price adjustment could have happened before Oct 2025, raising it to $209. Then a later July 2026 adjustment raised to $259.99. That timeline fits: Jan 2025 $154.99, then July 1 2025 price adjustment to $209, then Oct 2025 group buy at $209, then July 1 2026 adjustment to $259.99. The Qwertykeys page says "Price Adjustments: The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT" (future relative to page? maybe July 2026). And "If you'd like to order at the current pricing, please don't miss the last chance: Neo80 Cu Brass/Copper Bottom Case +$20, Brass/Copper Weight +$10". This looks like a pre-adjustment announcement. So $259.99 is before July 1 2026 adjustment? Actually the page lists base $259.99 and says price adjustment at July 1st, with extra +$20/+10 for bottom/weight. That could mean after July 1, base becomes higher and those extras remain? Hmm. Wait the price adjustment section says: "### Neo80 Cu Brass/Copper Bottom Case: +$20 USD Brass/Copper Weight: +$10 USD" This suggests current pricing includes these as add-ons. After adjustment, maybe base price increases. Not clear. But video from Oct 2025 says "starts at 209" and "not a single iteration goes above $299 unless extras". So base at that time was $209. That is lower than current $259.99. So price has increased since Oct 2025 by $50. That aligns with a price adjustment. The UniKeys Batch 2 Jan 2025 $154.99 seems too low. Could be a discount/extras? Maybe because it's "without plate"? But content list includes plate of choice? Actually snippet says "Plate of your choice". Hmm. Let's check the UniKeys page via curl and grep for "price" and "add to cart" to see actual variant pricing. Use exec with python to fetch and maybe print JSON? We'll use `curl -s` and `grep`? But instructions: do not use `grep` shell, use tool. But we can use python script with requests to fetch and parse. Use exec for network fetch is okay? It's not file operation. We'll use `python -c` with requests? Need internet. Let's try.
{
"command": "python3 - <<'PY'\nimport requests, re\nurl='https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order'\nheaders={'User-Agent':'Mozilla/5.0'}\nhtml=requests.get(url, headers=headers, timeout=20).text\n# Find price and dates\nfor pat in ['\\$[\\d,.]+','€[\\d,.]+','Pre-order Date','Global Pre-order','Batch','price']:\n m=re.findall(pat, html, re.IGNORECASE)\n if m:\n print(pat, m[:10])\nPY"
}Output from command in shell a49dd7: <stdin>:6: SyntaxWarning: invalid escape sequence '\$' <stdin>:6: SyntaxWarning: invalid escape sequence '\d' \$[\d,.]+ ['$0.00', '$0.00', '$0.00', '$0.00', '$0.00', '$0.00', '$0.00', '$0.00', '$0.00', '$0.00'] Pre-order Date ['Pre-order Date', 'Pre-order Date', 'Pre-order Date', 'Pre-order Date', 'Pre-order Date', 'Pre-order Date'] Global Pre-order ['Global Pre-order', 'Global Pre-order', 'Global Pre-order', 'Global Pre-order', 'Global Pre-order', 'Global Pre-order'] Batch ['batch', 'BATCH', 'batch', 'BATCH', 'BATCH', 'batch', 'batch', 'batch', 'batch', 'batch'] price ['price', 'price', 'price', 'price', 'price', 'price', 'price', 'price', 'price', 'price'] Exit code: 0
Not helpful due to dynamic JS. Could try to find JSON in page source. Search for product JSON.
{
"command": "python3 - <<'PY'\nimport requests, re, json\nurl='https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order'\nhtml=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).text\n# find Shopify product json\nm=re.search(r'var\\s+product\\s*=\\s*({.*?});', html, re.S)\nif m:\n data=json.loads(m.group(1))\n print('title', data.get('title'))\n print('created', data.get('created_at'))\n print('published', data.get('published_at'))\n print('variants')\n for v in data.get('variants',[])[:20]:\n print(v.get('title'), v.get('price'), v.get('sku'))\nelse:\n print('no product json found, search for json with price')\n for snippet in re.findall(r'\"price\":\\s*\"[\\d.]+\"', html)[:20]:\n print(snippet)\nPY"
}Output from command in shell e94858: no product json found, search for json with price "price":"154.99" "price":"154.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" "price":"154.99" "price":"169.99" Exit code: 0
Great. UniKeys Batch 2 has variants at $154.99 and $169.99. We can load full JSON to see variants and identify which corresponds. Let's extract more.
{
"command": "python3 - <<'PY'\nimport requests, re, json\nurl='https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order'\nhtml=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).text\n# try find product json more robustly\nfor pat in [r'window\\.\\w+\\s*=\\s*({.*?});', r'\"product\":\\s*({.*?}),\\s*\"', r'<script[^>]*>.*?var product = ({.*?});.*?</script>']:\n m=re.search(pat, html, re.S)\n if m:\n try:\n data=json.loads(m.group(1))\n if 'title' in str(data):\n print('found via', pat)\n print(json.dumps(data, indent=2)[:4000])\n break\n except Exception as e:\n pass\nelse:\n # find a json containing price 154.99 and title\n for m in re.finditer(r'({[^{}]*\"price\"[^{}]*154\\.99[^{}]*})', html):\n print(m.group(0)[:2000])\nPY"
}Output from command in shell d16965:
found via "product":\s*({.*?}),\s*"
{
"title": "Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order",
"vendor": "Qwertykeys",
"id": "12058854555966",
"untranslatedTitle": "Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order",
"url": "/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order",
"type": "Custom Keyboard"
}
Exit code: 0Need variants from JSON. Let's parse full product object; find matching JSON. Use re for `"variants":`.
{
"command": "python3 - <<'PY'\nimport requests, re, json\nurl='https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order'\nhtml=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).text\n# find product json object start at title\nm=re.search(r'\"product\":\\s*({.*?\"variants\":\\s*\\[.*?\\].*?})\\s*,\\s*\"', html, re.S)\nif not m:\n # maybe different structure\n m=re.search(r'\"product\":\\s*({.*?})\\s*,\\s*\"section', html, re.S)\nif m:\n data=json.loads(m.group(1))\n print('title', data.get('title'))\n print('published', data.get('published_at'))\n print('created', data.get('created_at'))\n for v in data.get('variants',[]):\n print(v.get('title'), 'price', v.get('price'), 'compare', v.get('compare_at_price'))\nelse:\n print('no match')\nPY"
}Output from command in shell 0b7ad2:
Traceback (most recent call last):
File "<stdin>", line 10, in <module>
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/json/__init__.py", line 346, in loads
return _default_decoder.decode(s)
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/json/decoder.py", line 341, in decode
raise JSONDecodeError("Extra data", s, end)
json.decoder.JSONDecodeError: Extra data: line 1 column 285 (char 284)
Exit code: 1Need extract correct. Let's look for pattern around "price":"154.99" and context. Maybe use regex to find JSON for variants array.
{
"command": "python3 - <<'PY'\nimport requests, re, json\nurl='https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order'\nhtml=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).text\n# Find the section around a price variant\nidx=html.find('\"price\":\"154.99\"')\nprint('idx', idx)\nprint(html[idx-500:idx+500])\nPY"
}Output from command in shell cda82f:
idx 179691
var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
var token = match? match[1]: undefined;
if (!hasLoggedConversion(token)) {
setCookieIfConversion(token);
window.ShopifyAnalytics.lib.track("Viewed Product",{"currency":"USD","variantId":52317054533950,"productId":12058854555966,"productGid":"gid:\/\/shopify\/Product\/12058854555966","name":"Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order - WK \/ Anodized Silver \/ Brass","price":"154.99","sku":"NK0001","brand":"Qwertykeys","variant":"WK \/ Anodized Silver \/ Brass","category":"Custom Keyboard","nonInteraction":true,"remote":false},undefined,undefined,{"shopifyEmitted":true});
window.ShopifyAnalytics.lib.track("monorail:\/\/trekkie_storefront_viewed_product\/1.1",{"currency":"USD","variantId":52317054533950,"productId":12058854555966,"productGid":"gid:\/\/shopify\/Product\/12058854555966","name":"Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order - WK \/
Exit code: 0So variant "WK / Anodized Silver / Brass" price $154.99. Another variant at $169.99 maybe WKL or copper? The Batch 2 pre-order Jan 13-20 2025 had starting price $154.99 (brass bottom) and $169.99 maybe copper bottom? Actually the product title "BATCH 2 Pre-Order" and starting at $154.99. That is earlier and cheaper than $209. This strongly suggests original release earlier than Oct 2025. The user is right. We need find Batch 1 date and original price. Could be Batch 1 in late 2024. The Prototypist Cu Batch 10 ending April 2026 implies earlier batches. Let's search Prototypist for earlier Cu batches (Batch 1 to 9).
{
"query": "site:prototypist.net \"pre-order-neo80-cu-keyboard-kit-batch\" \"Pre-Order\""
}# Web Search Results for "site:prototypist.net "pre-order-neo80-cu-keyboard-kit-batch" "Pre-Order"" ## 1. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... I am confirming by checking this box that I have read the terms, FAQ's, and conditions and disclaimers below. I understand that this is a Pre-Order and will ship at a later date, that these orders cannot be cancelled due to their bespoke nature and that updates are always available from the Support Menu. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediate... ## 2. (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-batch-10 (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... # (Pre-Order) Neo80 Cu Keyboard Kit Batch 10 ... ##### This Group Buy has ended and can no longer be ordered. Try searching Pre-Orders or our In Stock range. ... £158.33 ... This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... Expected Shipping time: late Q3 2026 ... ##### Shipping Time and GB Agreements ... Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ... These products are set to be shipped out at the date specified above, but please check our updates for the latest information. ## 3. (Pre-Order) Neo80 Cu Keyboard Kit Addons Batch 10 URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit-addons-batch-10 (Pre-Order) Neo80 Cu Keyboard Kit Addons Batch 10 ... # (Pre-Order) Neo80 Cu Keyboard Kit Addons Batch 10 ... ##### This Group Buy has ended and can no longer be ordered. Try searching Pre-Orders or our In Stock range. ... Addons: Alu ... £15.00 ... This is a Group Buy - that means this product has not yet been manufactured. This product will ship at a later date, as detailed in the product description below.Please read our guidance on Group Buys here: FAQ's ... Pre-Order Ends: 10th April 2026 ... Expected Shipping time: Late Q3 2026 ... Addons Available: ... - ALU - PP - CF - PEI - Glossy Chamfer ALU ... Wired ANSI Hots ... - Tri-Mode ANSI Hots ... - Tri-Mode ISO ... Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular product. ## 4. (Pre Order) Neo80 Keyboard Kit Batch 8 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-batch-8 (Pre Order) Neo80 Keyboard Kit Batch 8 ... # (Pre Order) Neo80 Keyboard Kit Batch 8 ... £93.33 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. Order soon as inventory in Pre-Order is discounted from full retail price and sells quickly! ... checking this box that ... have read the terms, FAQ's, and conditions and disclaimers below. I understand that this is a Pre-Order and will ship at a later date, that these orders cannot be cancelled due to their bespoke nature and that updates are always available from the Support Menu. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. Order soon as inventory in Pre-Order is discounted from full retail price and sells quickly!Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Closes September 30th 2025 ... Expected to ship Q1 2026 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q1 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There ... ## 5. (Pre Order) Neo80 Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit (Pre Order) Neo80 Keyboard Kit ... # (Pre Order) Neo80 Keyboard Kit ... £89.17 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... I am confirming by checking this box that I have read the terms, FAQ's, and conditions and disclaimers below. I understand that this is a Pre-Order and will ship at a later date, that these orders cannot be cancelled due to their bespoke nature and that updates are always available from the Support Menu. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Expected to ship Q2 2024 ... PRE-ORDERS CLOSE AFTER CNY ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2024 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product...
Prototypist only lists Cu Batch 10 and main, no earlier Cu batches in search. But the URL scheme might be /products/pre-order-neo80-cu-keyboard-kit-batch-9 etc. Could query sequential URLs. But time. Maybe use web search for "Neo80 Cu Batch 9" etc. But maybe not needed. The key: UniKeys Batch 2 Jan 2025 at $154.99. That is definitely earlier. Need find Batch 1. Could infer Batch 1 was maybe in 2024. Let's search Deskhero or Mecha for Neo80 Cu first batch.
{
"query": "\"Neo80 Cu\" \"Batch 1\" \"pre-order\" \"2024\" OR \"2025\""
}# Web Search Results for ""Neo80 Cu" "Batch 1" "pre-order" "2024" OR "2025"" ## 1. (Pre Order) Neo80 Keyboard Kit Batch 1 URL: https://prototypist.net/products/pre-order-neo80-keyboard-kit-batch-1 (Pre Order) Neo80 Keyboard Kit Batch 1 ... # (Pre Order) Neo80 Keyboard Kit Batch 1 ... 89.17 ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Closes January 31st 2025 ... Expected to ship Q2 2025 ... Hello everyone, this is Neo Studio. The successful release of Neo65 and Neo70 has proven the feasibility of our new sales format for custom mechanical keyboards. As a result, we will continue to explore more layouts to meet the demands of even more customers. Now, let's introduce our third product - Neo80. ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2025 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. If your extra cost items are not billed at checkout you will receive an invoice for them once the pre-order window closes. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only ... ## 2. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular... ## 3. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... ## Neo80 CU Keyboard Kit ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends ## 4. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... RM 259.44 ... FREE SHIPPING WITHIN MALAYSIA (EAST MALAYSIA INCLUDED) ... 1 UNIT PER ORDER, YOU CAN PLACE MULTIPLE ORDERS ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... After the 75%, 60% and 65%, Neo is finally bringing the premium-value Cu treatment to the TKL layout. The Neo80 Cu is a truly hefty and premium beast, coming in around 4.5 kg after being built. This is a truly uncompromising practical daily driver that will make your desk shine. ... - Weight: Around 4.5 kg after assembly ... - Layout: WK/WKL - Size:80% TKL, 355.5mm * 134 mm - Front height:18 mm ... - Typing angle:8 degree ... ### Pre Order Policy and Disclaimer ... - By placing an order, you agree to the terms stated above. - This is a group buy/pre-order item. By placing an order you agree with the delivery date and acknowledge that the date may be subject to changes due to manufacturing or shipping delays. ... - Do not mix Pre Order and non Pre Order items in the same order, as well as items from different Pre Orders/GBs in the same order. - Strictly no refunds/cancellations ... Pre Order period has ended. 5% processing fee applicable for refunds/cancellations ... the Pre Order period. ## 5. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Item is in stock Only 0 left in stock Item is out of stock Item is unavailable ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Neo80 Cu ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ... - Typing angle:8 degree - Front height:18 mm - Size:80% TKL, 355.5mm * 134 mm - Layout: WK/WKL - Weight: Around 4.5 kg after assembly
The Prototypist result for Neo80 Keyboard Kit Batch 1 (non-Cu) closes Jan 31 2025, expected Q2 2025. That suggests the regular Neo80 had a Batch 1 in Jan 2025. The Cu version appears later (Nov 2025 at Prototypist, Batch 10 April 2026). Wait maybe Prototypist's "Batch 1" is regular Neo80, not Cu. The Cu version first listed at Prototypist ending Nov 30 2025. That supports original release around Oct/Nov 2025 for Cu. But UniKeys Batch 2 Jan 2025 for Cu conflicts. Maybe UniKeys is in a different timezone and the date fields are bugged? No, it's explicit. Maybe the product naming: "Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order" on UniKeys might actually be a leftover/extra page from a different batch that hasn't been updated; but the URL and title say Cu. Could be a mistake where they used "Batch 2" for restock. But Jan 2025 price $154.99 is real. How could a Cu TKL weigh 4.5kg sell for $154.99? Maybe it's a "without plate" or "without bottom"? The snippet says "Plate of your choice", "Bottom Case: Brass". So it includes bottom. $154.99 seems too low compared to $209/$259. But maybe it's a special early bird. Let's check the Qwertykeys original Cu series price history: Neo65 Cu, Neo75 Cu, Neo80 Cu. The "Neo Cu line will have a price adjustment at July 1st". The Cu line likely launched in 2024? Let's search for "Neo Cu line price adjustment July 1st".
{
"query": "\"Neo Cu line\" \"price adjustment\" \"July 1st\" Qwertykeys"
}# Web Search Results for ""Neo Cu line" "price adjustment" "July 1st" Qwertykeys" ## 1. Neo65 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo65-cu-custom-mechanical-keyboard ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo65 Cu ... Brass/Copper Bottom Case: +$15 USD ... ### Neo75 Cu ... Brass/Copper Bottom Case: +$15 USD ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 2. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/en-de/products/neo80-cu-custom-mechanical-keyboard ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 3. Neo75 Cu – Qwertykeys URL: https://www.qwertykeys.com/en-nl/products/neo75cu ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo65 Cu ... Brass/Copper Bottom Case: +$15 USD ... ### Neo75 Cu ... Brass/Copper Bottom Case: +$15 USD ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 4. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/en-nl/products/neo80-cu-custom-mechanical-keyboard ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD ## 5. Neo65 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/en-de/products/neo65-cu-custom-mechanical-keyboard ## Price Adjustments ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo65 Cu ... Brass/Copper Bottom Case: +$15 USD ... ### Neo75 Cu ... Brass/Copper Bottom Case: +$15 USD ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ... Brass/Copper Weight: +$10 USD
Maybe the "July 1st" price adjustment is upcoming in a few days from today (2026-07-16?) Actually today is July 16 2026, so July 1 2026 already passed. But still shows. Could be an annual recurring adjustment. Hmm. Let's check Qwertykeys product pages for each Cu: maybe they show base price and release date. The Neo80 Cu page has variant list with top case $64.99, maybe because the base price only includes top? Wait the product price shown $259.99 but variant list "WK / Anodized Silver - $64.99" etc. In Shopify, if product has variants with their own prices, the displayed price might be the lowest variant price, and "From $64.99"? But page says $259.99. The variant list with $64.99 likely because the options use separate product-like pricing? Actually the first option "Layout" might not be a variant with price; the displayed variants are top case options, each $64.99? That seems like top case sold separately? Maybe the product page is for a keyboard kit and the base price is $259.99, but the "product variants" list displays top case color add-on at $64.99? Confusing. Let's fetch Qwertykeys product JSON to see variants and prices.
{
"command": "python3 - <<'PY'\nimport requests, re, json\nurl='https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard'\nhtml=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).text\n# find ShopifyAnalytics viewed product tracks\nfor m in re.finditer(r'\"Viewed Product\",({.*?})', html, re.S):\n s=m.group(1).replace('\\\\\"','\"')\n try:\n data=json.loads(s)\n print(data.get('name'), data.get('price'), data.get('variant'))\n except Exception as e:\n pass\nPY"
}Output from command in shell dd8a10: Neo80 Cu Custom Mechanical Keyboard - WK / Anodized Silver 64.99 WK / Anodized Silver Exit code: 0
Interesting! The Qwertykeys "Neo80 Cu" product's first variant is "WK / Anodized Silver" price $64.99. That is the top case maybe sold separately? Wait the product title is "Neo80 Cu Custom Mechanical Keyboard" but variant price $64.99. This seems like the product might be the top case only? But description says keyboard. Maybe the base product price is hidden and the variant prices are for top case? Hmm. Actually the Shopify "Viewed Product" track shows name "Neo80 Cu Custom Mechanical Keyboard - WK / Anodized Silver" price 64.99. So maybe the product is a top-case add-on? But page header says $259.99. Could be that the page is a pre-order product with multiple components and the displayed $259.99 is for a default bundle, but the variant list is broken? Let's see all variants.
{
"command": "python3 - <<'PY'\nimport requests, re, json\nurl='https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard'\nhtml=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).text\n# find all viewed product variant names/prices\nseen=set()\nfor m in re.finditer(r'track\\(\"Viewed Product\",({.*?}),', html, re.S):\n s=m.group(1)\n try:\n data=json.loads(s)\n key=(data.get('name'), data.get('price'))\n if key not in seen:\n seen.add(key)\n print(data.get('variant'), '->', data.get('price'))\n except Exception as e:\n pass\nPY"
}Output from command in shell 4a4d93: WK / Anodized Silver -> 64.99 Exit code: 0
Only one track. But earlier page displayed $259.99. Maybe $259.99 is the compare/price of a "bundle" not in variants? Let's search HTML for 259.99.
{
"command": "python3 - <<'PY'\nimport requests, re\nurl='https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard'\nhtml=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).text\nfor m in re.finditer(r'259\\.99', html):\n start=max(0,m.start()-200); end=min(len(html),m.end()+200)\n print(html[start:end].replace('\\n',' '))\n print('---')\nPY"
}Output from command in shell b0b47a:
9407603__main-product-9203752927475" class="product__price"><div class="price flex flex-wrap items-baseline gap-2 lg:flex-col xl:items-end lg:gap-1d5" ><span class="price__regular whitespace-nowrap">$259.99</span></div> </div> <div class="product__rating flex items-center gap-2" > <div class="rating text-lg leading-none" role="img" aria-label="4.0 out of 5.0 stars" ><svg clas
---
ged the disclaimers, product introduction, QC standards, and shipping and return policy outlined below. </label> </div> <div data-pp-message data-pp-placement="product" data-pp-amount="259.99" data-pp-buyercountry="US"></div> <div class="product-form__buttons grid gap-4" id="QuantityForm-template--20116939407603__main-product-9203752927475"> <div class="product-form__error-mess
---
<span class="relative"> - </span> <product-buy-price class="price" data-price="6499" form="ProductForm-template--20116939407603__main-product-9203752927475">$259.99</product-buy-price> </div></span> </button></div></div><input type="hidden" name="product-id" value="9203752927475" /><input type="hidden" name="section-id" value="template--201
---
<div id="StickyPrice-template--20116939407603__main-product-9203752927475"><div class="price flex flex-wrap items-center gap-2 lg:gap-1d5" ><span class="price__regular whitespace-nowrap">$259.99</span></div> </div> </div><button type="submit" name="add" form="ProductForm-template--20116939407603__main-product-9203752927475"
---
Exit code: 0The HTML has data-price="6499" but displays $259.99; maybe the add to cart button updates based on variant selection, but initial shown price is $259.99. The product variant $64.99 is likely the top case only? Wait data-price=6499 corresponds to $64.99 but display $259.99. When variants selected, price changes. So the base variant price might be $64.99 for top case? That doesn't make sense because product should be full kit. Maybe the product is structured with "Add-ons" and the main price shown is $259.99, but the variant selected is a $64.99 top case? The page may have multiple product forms. Anyway. The key price points are: - UniKeys Batch 2 Jan 2025: variants $154.99 / $169.99 - alexotos video Oct 2025: starts at $209, max $299 (without extras) - Qwertykeys current: $259.99 (pre-adjustment?) Need answer user: "when the neo80 cu released, how much was it selling for?" We can say: It appears to have had multiple batches. The earliest documented one I found is UniKeys "Batch 2" on Jan 13-20, 2025, with a brass-bottom variant at $154.99 and a $169.99 option. But the widely promoted launch wave referenced in the alexotos video (Oct 13, 2025) and Qwertykeys/Pantheon group buy (Oct 10 - Nov 10, 2025) started at $209 USD, with no stock configuration exceeding $299 unless you bought extras. Qwertykeys later raised the base price to $259.99 (with a July 1st price adjustment noted). But is the UniKeys Batch 2 Jan 2025 the first release? We need find Batch 1 date. Could be December 2024? Maybe not. Let's search for "Neo80 Cu pre order December 2024".
{
"query": "\"Neo80 Cu\" \"December\" OR \"Dec\" 2024 pre-order"
}# Web Search Results for ""Neo80 Cu" "December" OR "Dec" 2024 pre-order" ## 1. Neo80 Cu Custom Mechanical Keyboard – Qwertykeys URL: https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard Neo80 Cu ... Neo80 Cu ... I acknowledge that this item is a pre-order product and understand that it will require a lead time before shipment. ... This is a pre-order product. ... Estimated Fulfillment Time: 8 weeks ... The Neo Cu line will have a price adjustment at July 1st, 12:00 AM EDT. ... If you'd like to order at the current pricing, please don’t miss the last chance: ... ### Neo80 Cu ... Brass/Copper Bottom Case: +$20 USD ## 2. (Pre-Order) Neo80 Cu Keyboard Kit URL: https://prototypist.net/products/pre-order-neo80-cu-keyboard-kit (Pre-Order) Neo80 Cu Keyboard Kit ... # (Pre-Order) Neo80 Cu Keyboard Kit ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range. ... This product is a Pre-Order currently being manufactured to ship at a later date detailed in the product description below. It will be available for purchase until allocated stock sells through, or, the items arrive and move to our In Stock range.Please read our guidance on Pre-Orders here: FAQ's ... This is a Pre-Order, please read our guidance on Pre-Orders here: FAQ's ... Pre-Order Ends: 30th November 2025 ... Expected Shipping time: Q2 2026 ... Shipping Time and GB Agreements (PLEASE READ):These products are set to be shipped out in Q2 2026 but please check our updates for the latest information.Please note that this is a Group Buy. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders. Please do not purchase this item with other group buys. Only the items specified in each product picture are included with that particular product. ... ##### Shipping Time and Pre-Order Agreements (PLEASE READ): ... Please note that this is a Pre-Order. There can be delays and set backs. The timeline is only an estimate. By adding this item to your cart and purchasing you agree that you understand everything above. You will be charged immediately for this item. There are no refunds or cancellations on these orders due to their bespoke nature. Please do not purchase this item with other group buys or pre-orders as this will delay shipping till all items are available. Only the items specified in each product picture are included with that particular... ## 3. [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards URL: https://www.rebultkeyboards.com/products/pre-order-neo80-cu-copper-bottom [Pre-Order] Neo80 Cu - Copper Bottom – Rebult Keyboards ... # [Pre-Order] Neo80 Cu - Copper Bottom ... Pre Order Start Date: 11 Oct 2025, 8 PM ... Pre Order End Date: 23 Oct 2025, 11:59 PM ... Estimated Fulfilment: Dec 2025 ... Neo80 ... ### Pre Order Policy and Disclaimer ... - By placing an order, you agree to the terms stated above. ... - This is a group buy/pre-order item. By placing an order you agree with the delivery date and acknowledge that the date may be subject to changes due to manufacturing or shipping delays. ... - Do not mix Pre Order and ... Pre Order items in the same order, as ... as items from different Pre Orders/GBs in the same order. ... - Strictly no refunds/cancell ... Pre Order period has ended. 5% processing ... refunds/c ... the Pre Order period ## 4. Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys URL: https://www.switchkeys.com.au/products/neo80-cu-keyboard-kit-pre-order Neo80 Cu - Keyboard Kit (Pre-Order) – SwitchKeys ... # Neo80 Cu - Keyboard Kit (Pre-Order) ... $195.00 Sale • Save ... Item is in stock Only 0 left in stock Item is out of stock Item is unavailable ... The following Group Buy/Pre-Order is not an instock product. 100% pre-paid deposit required. No cancellations are accepted once the purchase window for this Group Buy has concluded. By purchasing, you agree to our Terms and Conditions and understand our Group Buy process, including the expected ETA for this product and any potential delays, that cancellations are not permitted, and that combining orders is not possible. ... Add to Cart • $195.00 ... Group Buy Period Group Buy Period ... The expected wait times are currently three to five months. Please note that these timelines may be shorter or longer, depending on demand at the time of the order. ... - Typing angle:8 degree ... - Front height:18 mm ... - Size:80% TKL, 355.5mm * 134 mm ... - Layout: WK ... - Weight: Around 4.5 kg after assembly ## 5. Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys URL: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order – UniKeys ... # Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order ... Important to note: This is a short pre-order, not an in-stock item. All units will be shipped out after the production is finished. The following timeline is our best estimation but is subject to change if affected by unexpected events. By placing an order, you acknowledge that this product is a pre-order / not in stock and have read the estimated timeline below. ... Global Pre-order Date: Jan. 13th, 2025 ... Pre-order End Date: Jan. 20th, 2025 ... Estimated Shipping Date: Around 6 weeks after pre-order ends
Search didn't find December 2024. Maybe not. Let's try to use Qwertykeys product page JSON to see published_at/created_at. Use Shopify API? The product ID is 9203752927475. We can query `https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard.json` which many Shopify stores expose.
{
"command": "python3 - <<'PY'\nimport requests, json\nurl='https://www.qwertykeys.com/products/neo80-cu-custom-mechanical-keyboard.json'\ntry:\n data=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).json()\n p=data.get('product',{})\n print('title', p.get('title'))\n print('created_at', p.get('created_at'))\n print('published_at', p.get('published_at'))\n print('updated_at', p.get('updated_at'))\n for v in p.get('variants',[])[:30]:\n print(v.get('title'), 'price', v.get('price'), 'compare', v.get('compare_at_price'))\nexcept Exception as e:\n print('error', e)\nPY"
}Output from command in shell 70dc09: title Neo80 Cu Custom Mechanical Keyboard created_at 2025-08-20T01:00:53-04:00 published_at 2025-09-18T00:21:32-04:00 updated_at 2026-07-17T02:04:07-04:00 WK / Anodized Silver price 64.99 compare WK / Anodized Slate Blue price 64.99 compare WK / Anodized Teal price 64.99 compare WK / Anodized Black price 64.99 compare WK / Anodized Taupe Grey price 64.99 compare WK / Anodized Dusty Rose price 64.99 compare WK / Anodized Jade price 64.99 compare WK / Anodized Ruby Rose price 64.99 compare WK / Anodized Mont Blanc price 64.99 compare WK / Spray-coated Retro White price 64.99 compare Exit code: 0
Aha! Qwertykeys product created 2025-08-20, published 2025-09-18. So this product page is from August/September 2025! That means the Neo80 Cu on Qwertykeys was published/launched around September 18, 2025, not Oct 2025. The variants are priced at $64.99 (maybe top case? Actually all variants $64.99; maybe the product is incorrectly set? But published date suggests product creation). However, the product is titled "Neo80 Cu Custom Mechanical Keyboard" but variants are all $64.99. That is weird. But we also see the product was created/published in August/September 2025. So the original release of Neo80 Cu on Qwertykeys is September 2025, and group buy started Oct 10. The earlier UniKeys Batch 2 Jan 2025 is contradictory: could be a pre-release? Or maybe a different product with same name but not this exact Cu? Wait product created 2025-08-20, so it cannot have been sold Jan 2025. But UniKeys Batch 2 Jan 2025 price $154.99. Could it be a placeholder date incorrectly set to 2025? Maybe the year is 2024? No, it says 2025. But product creation on Qwertykeys is 2025-08. Hmm. Wait maybe the Qwertykeys product page created in Aug 2025 for a new color run of the Neo80 Cu; the product could have existed before under a different product ID? But the canonical URL is `neo80-cu-custom-mechanical-keyboard`. If they created the product in Aug 2025, that's likely when it launched. The UniKeys "BATCH 2 Pre-Order" Jan 2025 with price $154.99 could be an error/mislabeled "Batch 2" or the page is from a previous pre-order that has been relabeled? But URL is `neo80-cu-custom-mechanical-keyboard-batch-2-pre-order`, maybe they created it before the product existed? Hmm. Let's check UniKeys product creation dates via `.json`.
{
"command": "python3 - <<'PY'\nimport requests, json, re\nfor url in ['https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order.json',\n 'https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard.json']:\n try:\n data=requests.get(url, headers={'User-Agent':'Mozilla/5.0'}, timeout=20).json()\n p=data.get('product',{})\n print(url)\n print('title', p.get('title'))\n print('created', p.get('created_at'))\n print('published', p.get('published_at'))\n print('updated', p.get('updated_at'))\n except Exception as e:\n print(url, 'error', e)\nPY"
}Output from command in shell 8ba9ce: https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard-batch-2-pre-order.json title Neo80 Cu Custom Mechanical Keyboard BATCH 2 Pre-Order created 2025-10-08T22:24:07-04:00 published 2025-10-08T23:20:20-04:00 updated 2026-07-17T02:04:10-04:00 https://unikeyboards.com/products/neo80-cu-custom-mechanical-keyboard.json error Expecting value: line 1 column 1 (char 0) Exit code: 0
UniKeys Batch 2 product created/published 2025-10-08! Not Jan 2025. The dates shown on the page "Global Pre-order Date: Jan. 13th, 2025" might be a static text error or leftover from another product? Wait product created Oct 8 2025 and says Batch 2 pre-order Jan 13 2025? That's impossible. The page content might be from a template or mistakenly copied from Neo65/75 Cu? Let's look at product description? But creation date 2025-10-08 suggests the Batch 2 product was created in October 2025, and the "Global Pre-order Date: Jan. 13th, 2025" is likely a typo or year typo (should be 2026?). But "Jan. 13th, 2025" is indeed earlier than product creation. So the page content is unreliable. Therefore the actual release is around September/October 2025. Good. The user was right that Oct 2025 seems late; the product page published Sep 18 2025. The group buy started Oct 10 2025. The video uploaded Oct 13 2025. So original release ~ September/October 2025. Price at launch from video: starts at $209. Current Qwertykeys $259.99. The variant prices $64.99? That's weird. Maybe the product is set to show $64.99 for top case only? But the base price $259.99. Wait product JSON variants all $64.99. How can the page display $259.99? Maybe the page uses a bundle app and the $259.99 is a computed bundle price, while the Shopify product variants are $64.99 placeholder. Hmm. Let's check the Qwertykeys product page source for the actual price. The product JSON says variants $64.99, but product page display $259.99. This could mean the product is configured with variants at $64.99 but the page uses JavaScript to update to $259.99 based on selections? Wait no, if all variants $64.99, the displayed price should be from $64.99. But the HTML showed `$259.99` hardcoded. Maybe the product has an additional hidden variant not in JSON? The `.json` endpoint returns only first 10 variants? Actually product JSON returns all variants; we got 10. All $64.99. Could be that the product is not using Shopify's variant pricing; the $259.99 is from a metafield or bundle. But that seems odd. Let's view product JSON full. Already done. So maybe the $64.99 is the top case price, and the full kit price $259.99 is the main product? But then variants would not affect price? The `data-price="6499"` in add button but display $259.99 suggests the button's price might be set to $64.99? Wait `data-price="6499"` and `$259.99` in product-buy-price? Hmm. Could be a theme bug. Regardless, for user, we can say: - Product page created/published on Qwertykeys: Aug 20 / Sep 18, 2025. - Group buy/pre-order opened around Oct 10-11, 2025 (Pantheon Oct 10, Rebult Oct 11, alexotos video Oct 13). - Launch price: starting at $209 USD (alexotos video); no config above $299 without extras. - Current Qwertykeys price: $259.99, with announced price adjustment for brass/copper bottom +$20 and weight +$10. But we also need address "i swear it released before that". Since product created 2025-08-20 and published 2025-09-18, the earliest public listing was September 2025. So it did not release before Oct 2025? Actually it was published in Sept, but pre-order opened Oct. So the user is partially right: it was announced/listed before Oct 10. We can say "You're right that the public product page went up in mid-September 2025; the group-buy/pre-order window opened around October 10, 2025." That acknowledges their correction. But if they thought 2024, no evidence. Now we need combine with the video. Since they sent the video, we must summarize it per rules. However, the user's immediate request after "i swear it released before that" and then sending the link is likely: "use this video to figure it out." We need perhaps say "I pulled the transcript and upload date; it says starts at 209; no release date in transcript, but the video was uploaded Oct 13 2025, matching the Oct group buy." Then give answer. But the user explicitly sent YouTube link, per rules use yt-dlp to summarize video. We need summarize the video? The user didn't ask to summarize; they sent link as evidence. But the rule says "If I ever paste in a YouTube link, use yt-dlp to summarize the video." So we should summarize and use it. The summary should include key points and the price mention. Then answer the question. We have already extracted captions. Need produce a summary. The video is 17+ minutes. We can summarize: alexotos builds the Neo80 Cu, mentions it starts at $209, praises side profile and colors (Mont Blanc, Jade, Taupe Grey, Slate Blue), doesn't love compass badge but likes the rest, uses MX2A Cherry Black switches and GMK Dandy keycaps, notes the board is heavy, has tri-mode PCB, Poron gasket mount, top mount, acoustic chamber, PEI plate, forcebreak pads, star ring accent light, 4.5kg weight, and concludes it feels premium and no config above $299 unless extras. Mention sponsored review. Also upload date 2025-10-13. But the user wants answer to release date/price. The video supports price. Release date we infer from page metadata and group buy dates. Let's produce concise answer. Need double-check Qwertykeys product `.json` for `published_at` is 2025-09-18. Use this as earliest date. Also group buy dates. Could also check alexotos video upload date. Use these. Let's maybe also fetch the Pantheonkeys page to get group buy period and price in SGD. Already from search: Group Buy Period 10th Oct - 10th Nov 2025, price $238.00 SGD. The Qwertykeys page says Oct 10th for Canada. Good. Let's get the Pantheonkeys page for full details.
{
"url": "https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys"
}# Web Content from https://pantheonkeys.com/products/gb-neo80-cu-by-qwertykeys [Skip to content][1] Free local shipping on in-stock orders above SGD 90. * Shop Shop * Group Buys Group Buys * Services Services * [Reach Us][2] Singapore (SGD $) Login * [Facebook ][3] * [Instagram ][4] * [YouTube ][5] * [TikTok ][6] * [Discord ][7] [ Search][8] Site navigation [ pantheonkeys][9] * Shop * Group Buys * [Ongoing][10] * [Archive][11] * [Updates][12] * Services * [Switch Filming & Lubing][13] * [Stabilizer Tuning & Lubing][14] * [Switch Break-In Service][15] * [PCB Soldering & Desoldering][16] * [PCB Mill-Max][17] * [Custom Plate Cut][18] * [Custom Build][19] * [The Pantheon Workshop][20] * [ Reach Us][21] [ Search][22] Login [ Cart0 ][23] Site navigation * Cart 0 * Recently viewed Cart Your cart is currently empty. Not sure where to start? Try these collections: * [ Continue shopping][24] Order note Shipping Discount Order special instructions Order note Apply Estimate shipping Discount Discount code Apply Taxes and [shipping][25] calculated at checkout Subtotal $0.00 SGD Check out Recently viewed Search Search Clear [Home ][26] Menu [Search ][27] [ 0 Cart ][28] Account [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] [[GB] Neo80 CU by Qwertykeys] ## [GB] Neo80 CU by Qwertykeys $238.00 SGD Layout Layout: WinKey * WinKey * WinKeyLess Top Case Top Case: Anodized Silver * Anodized Silver * Anodized State Blue * Anodized Teal * Anodized Black * Anodized Taupe Grey * Anodized Dusty Rose * Anodized Jade * Anodized Ruby Rose * Anodized Mont Blanc Bottom Case Bottom Case: Brass * Brass * Copper Product variants WinKey / Anodized Silver / Brass - Sold Out - $238.00 WinKey / Anodized Silver / Copper - Sold Out - $258.00 WinKey / Anodized State Blue / Brass - Sold Out - $238.00 WinKey / Anodized State Blue / Copper - Sold Out - $258.00 WinKey / Anodized Teal / Brass - Sold Out - $238.00 WinKey / Anodized Teal / Copper - Sold Out - $258.00 WinKey / Anodized Black / Brass - Sold Out - $238.00 WinKey / Anodized Black / Copper - Sold Out - $258.00 WinKey / Anodized Taupe Grey / Brass - Sold Out - $238.00 WinKey / Anodized Taupe Grey / Copper - Sold Out - $258.00 WinKey / Anodized Dusty Rose / Brass - Sold Out - $238.00 WinKey / Anodized Dusty Rose / Copper - Sold Out - $258.00 WinKey / Anodized Jade / Brass - Sold Out - $238.00 WinKey / Anodized Jade / Copper - Sold Out - $258.00 WinKey / Anodized Ruby Rose / Brass - Sold Out - $238.00 WinKey / Anodized Ruby Rose / Copper - Sold Out - $258.00 WinKey / Anodized Mont Blanc / Brass - Sold Out - $238.00 WinKey / Anodized Mont Blanc / Copper - Sold Out - $258.00 WinKeyLess / Anodized Silver / Brass - Sold Out - $238.00 WinKeyLess / Anodized Silver / Copper - Sold Out - $258.00 WinKeyLess / Anodized State Blue / Brass - Sold Out - $238.00 WinKeyLess / Anodized State Blue / Copper - Sold Out - $258.00 WinKeyLess / Anodized Teal / Brass - Sold Out - $238.00 WinKeyLess / Anodized Teal / Copper - Sold Out - $258.00 WinKeyLess / Anodized Black / Brass - Sold Out - $238.00 WinKeyLess / Anodized Black / Copper - Sold Out - $258.00 WinKeyLess / Anodized Taupe Grey / Brass - Sold Out - $238.00 WinKeyLess / Anodized Taupe Grey / Copper - Sold Out - $258.00 WinKeyLess / Anodized Dusty Rose / Brass - Sold Out - $238.00 WinKeyLess / Anodized Dusty Rose / Copper - Sold Out - $258.00 WinKeyLess / Anodized Jade / Brass - Sold Out - $238.00 WinKeyLess / Anodized Jade / Copper - Sold Out - $258.00 WinKeyLess / Anodized Ruby Rose / Brass - Sold Out - $238.00 WinKeyLess / Anodized Ruby Rose / Copper - Sold Out - $258.00 WinKeyLess / Anodized Mont Blanc / Brass - Sold Out - $238.00 WinKeyLess / Anodized Mont Blanc / Copper - Sold Out - $258.00 Out of stock Quantity Sold Out - $238.00 SGD Pickup currently unavailable at Pantheonkeys Share: * [Share on Facebook ][29] * [Share on X ][30] * [Pin on Pinterest ][31] * [Share on Telegram ][32] * [Share on WhatsApp ][33] * [Share by Email ][34] [Share][35] Share * [Facebook Share on Facebook ][36] * [X (Twitter) Share on X ][37] * [Pinterest Pin on Pinterest ][38] * [Telegram Share on Telegram ][39] * [WhatsApp Share on WhatsApp ][40] * [E-mail Share by Email ][41] Need help? Pairs well with **This is a pre-order item, please do not add other in stock items to your cart when ordering or your order will be cancelled.** **Group Buy Period: **10th Oct - 10th Nov 2025** Estimated Fulfilment: **Q1 2026 **Disclaimer:** * This product includes only the items listed above. Keycaps and switches shown are for demonstration purposes and are not included. * Group buy lead times are estimates, and delivery may take longer than expected. * Images are for illustrative purposes. While we strive for accurate color representation, slight variations may occur due to lighting, digital photography, and monitor settings. * Orders can be canceled during the group buy period, subject to a 4% cancellation fee for Singapore orders and 4.5% for international orders. Once the group buy has ended, cancellations and refunds will no longer be accepted. * Discount codes and vouchers do not apply to pre-order or group buy products. * If free shipping is selected for a pre-order/group buy item, Pantheonkeys reserves the right to adjust shipping prices at any time if necessary. By placing an order, you acknowledge and agree to these terms. Need help? We’ve got you. Whether you’re stuck choosing your first keyboard, confused about shipping, or wondering what “switch lubing” even means - we’re here to make it easy. * Shipping Information We ship fast. In-stock items that don’t need extra modifications will be ready in **1–2 working days**. We’re closed on **Sundays and Mondays**, so orders placed then will be processed the next working day. * Chat With Us Real humans, real answers. Email - Hello@pantheonkeys.com Discord - [https://discord.gg/VPCMDu2qE7][42] * Visit Us Try things in person. **PantheonKeys **57 Ubi Avenue 1 #05-05 Singapore 408936 ## Customer Reviews Be the first to write a review [Write a review][43] 0% (0) 0% (0) 0% (0) 0% (0) 0% (0) Customer Care * [Feedback][44] * [Contact][45] * [Firmware][46] * [Returns & Refunds][47] * [Privacy][48] * [T&C][49] Explore * [About][50] * [Articles & Guides][51] * [Join the Team][52] Socials * [Discord][53] * [Instagram][54] * [Facebook][55] * [Youtube][56] * [TikTok][57] * [Twitch][58] Store Location Ubi Center 57 Ubi Avenue 1 #05-05 Singapore 408936 **Hours:** Tue–Fri: 1pm–7pm Sat: 12nn–5pm Closed: Sun-Mon Stay in the loop with drops, events, and in-stock alerts. Enter your email * [Facebook ][59] * [Instagram ][60] * [YouTube ][61] * [TikTok ][62] * [Discord ][63] © 2026 pantheonkeys. Country/regionSingapore (SGD $) Singapore (SGD $) * [American Express] * [Apple Pay] * [Google Pay] * [Mastercard] * [Shop Pay] * [Union Pay] * [Visa] * Choosing a selection results in a full page refresh. * Opens in a new window. [1]: #MainContent [2]: /pages/contact-us [3]: https://www.facebook.com/pantheonkeys [4]: https://instagram.com/pantheonkeys [5]: https://www.youtube.com/user/pantheonkeys [6]: https://www.tiktok.com/@pantheonkeys.com [7]: https://discord.gg/VPCMDu2qE7 [8]: /search [9]: / [10]: /collections/ongoing-group-buys [11]: /collections/concluded-group-buys [12]: /pages/product-updates [13]: /products/switch-lubing-filming-service [14]: /products/stabilizer-tuning-lubing-service [15]: /products/switch-break-in-service [16]: /products/keyboard-soldering-desoldering-service [17]: /products/keyboard-mill-max-service [18]: /products/custom-keyboard-plate-cutting-service [19]: /pages/custom-builds [20]: /pages/custom-keyboard-experience [21]: /pages/contact-us [22]: /search [23]: /cart [24]: /collections/all [25]: /policies/shipping-policy [26]: / [27]: /search [28]: /cart [29]: //www.facebook.com/sharer.php?u=https%3A%2F%2Fpanth… (43 chars truncated) … (51 lines truncated) <truncation_notice> Full output written to: /var/folders/d9/mzhyr7lx6xbf236j5ll9v_300000gn/T/devin-overflows-501/d57080f6/content.txt </truncation_notice>
Pantheonkeys group buy period Oct 10 - Nov 10 2025, price SGD $238 brass, $258 copper. That in USD ~ $178 / $193 (but regional pricing differs). The alexotos video says starts at $209 USD. So original US launch starting $209. Qwertykeys product published Sep 18 2025; group buy starts Oct 10 2025. The video uploaded Oct 13 2025. So the product was officially launched/published in September 2025, with pre-orders opening October 2025. The user was right that it was "before" the October pre-order? The product page existed Sep 18. Now, the user originally asked "when the neo80 cu released, how much was it selling for?" We need answer. Since they provided the video, we need incorporate it. The video transcript and upload date. Also mention the product page published Sep 18 2025, group buy Oct 10 2025. Price at launch $209. Current $259.99. Also mention the Pantheonkeys price SGD $238/$258. But there is the UniKeys "Batch 2" product created Oct 8 2025 (same time) with Jan 13 2025 date weird. We should ignore or mention as an unreliable/typo? Since we discovered product creation date Oct 8 2025, the Jan 2025 date is likely an error. We can mention "a UniKeys 'Batch 2' page lists Jan 13-20, 2025, but the product itself was created on Oct 8, 2025, so that appears to be a copy-paste typo." That resolves the discrepancy and acknowledges the user's claim. Need also summarize video per AGENTS.md. Provide a brief summary of the alexotos video: building the Neo80 Cu, colors, weight, build, price mention. Then answer the question. Let's make sure we have correct transcript summary. We can read more of transcript for key points. But we have enough. Could search for "sound test" or "typing" not necessary. The video is sponsored build, he uses Cherry MX2A Black, GMK Dandy, and does a build. He likes side profile, colors, weight; not a fan of compass badge but tolerable; recommends adding a second layer of forcebreak pads; notes no config above $299 unless extras; starts at $209. Let's verify the transcript mentions "starts at 209" at 0:13. He also says "not a single iteration of this that goes above $299 unless you're getting extra pieces" at 16:08. Great. Now answer. We should also cite sources with <ref_file> or <ref_snippet> for the web pages and maybe the local VTT? Citation format can reference local file? Probably yes. But the user might not be able to open local file. We can cite URLs. For transcript, we can reference the YouTube video. Use <ref_file file="..."> for URLs? The tag example uses local file paths but maybe URLs. Use <ref_snippet> with file path? It says file must be absolute path. We can cite web pages via <ref_file file="https://..."/> maybe. Or just plain links. Need be concise. We have low-effort mode? Actually system says "low-effort mode" but that's a hidden instruction? The prompt says "You are in low-effort mode: treat as quick task..." Should we skip full verification? We already did. Provide answer. But also note: The AGENTS.md rule about YouTube says "if asked to summarize a YouTube video, do not name the session until after reading and understanding the full YouTube video transcript." We have read the transcript. Should we name the session? No, not needed. We can proceed. Let's produce final response: - Quick video summary. - Release date: Qwertykeys product page published Sep 18, 2025; pre-order/group-buy window opened around Oct 10-11, 2025 (Pantheon Oct 10-Nov 10, Rebult Oct 11-23, video Oct 13). So not before Sep/Oct 2025; the Oct 2025 was the pre-order opening, not the announcement. - Launch price: $209 USD starting (alexotos), with no full config above $299 without extras. Pantheonkeys SGD $238 brass / $258 copper. Current Qwertykeys $259.99. - Clarify UniKeys Jan 2025 page appears to be a typo because product created Oct 8 2025. - If user meant regular Neo80, that one launched May/June 2024 for ~£85/$100. We need mention the $209 is for US Qwertykeys starting config. The video: "starts at 209". Need maybe specify currency: USD. Let's ensure no misinformation. The Qwertykeys product JSON published_at 2025-09-18T00:21:32-04:00 and created_at 2025-08-20. The group buy period Oct 10 - Nov 10. The video upload 2025-10-13. The Pantheonkeys page shows group buy period. The Rebult page shows Oct 11. The UniKeys Batch 2 created Oct 8 2025, with page pre-order date Jan 13 2025 likely typo. We can cite these. Should we also mention "Neo80 Cu" wasn't released in 2024? We can say "I can't find evidence of a 2024 release for the Cu variant; the regular Neo80 did drop in May 2024." That directly addresses the user's "i swear it released before that". Let's produce final response. Ensure no emojis. Use references.
I pulled the captions from the alexotos video you linked. Here’s what it says, plus the web info I found.
Alexotos builds the Neo80 Cu and mostly raves about it. Key takeaways:
You were right that the public presence came a little before the October group-buy window:
.json).So the Cu didn’t release in 2024. A UniKeys “Batch 2” page lists Jan 13–20, 2025, but that Shopify product was actually created on Oct 8, 2025, so that date looks like a copy/paste typo. The earlier 2024 releases you may be remembering are the regular Neo80 (not the Cu), which had drops starting May/June 2024.
So at release it was a ~$209 starting-point kit, and the higher prices you see now are post-adjustment / later batches.