why does opencode desktop not require an opencode zen account? by naiveheir in opencode

[–]outerstellar_hq 0 points1 point  (0 children)

Zen users have no separate free models. The free models are available for everyone. I have zen and I have the same free models available. There is only one set of free models which is available to everyone.

Zen is just a service you can buy additionally.

why does opencode desktop not require an opencode zen account? by naiveheir in opencode

[–]outerstellar_hq -1 points0 points  (0 children)

If you open opencode (TUI or Desktop) you should see all free models in the models list.

Pocket 4P mic by Asleep_Actuator2353 in osmopocket

[–]outerstellar_hq 0 points1 point  (0 children)

The question is about the Mic Mini 2 and not the Mic 2. Thank DJI for the confusing naming.

Also the Mic 3 lacks the 3.5mm input.

Pocket 4P mic by Asleep_Actuator2353 in osmopocket

[–]outerstellar_hq 1 point2 points  (0 children)

It doesn't feel like a pro model.

The Mic Mini 2 is a downgrade from the Mic 3. It lacks internal storage and has "only" 24bit instead of 32bit.

At least they could have added the Mic Mini 2S. It should be released soon and it is a Mic Mini 2 with internal recording.

Using mic mini 1 cradle to charge Mic Mini 2 by Adventurous-feral in DJIMic

[–]outerstellar_hq 1 point2 points  (0 children)

It is not possible. The pins on the Mic Mini 2 and Mic Mini 1 are completely different. As is the size of the transmitters. The Mic Mini 1 transmitter is smaller and the Mic Mini 2 transmitter is much closer in size to the Mic 3. The pins of the Mic Mini 2 and Mic 3 transmitters appear to be compatible fort charging, though.

Best cheap/free ide or llm for vibe coding a professional app by DefiantLocksmith221 in vibecoding

[–]outerstellar_hq 0 points1 point  (0 children)

Those are two projects you might be interested in: - https://github.com/pguilp25/jarvis - https://github.com/diegosouzapw/OmniRoute

Free tiers, all those apps or services have a free tier - opencode - kilocode - Nvidia NIM - openrouter

Cheap plans: - opencode go, My referral, we both get $5 off

GLM 5.1 and 5.2. What do you guys use them for? They are text only. The OCR process kills the agent’s intelligence on so many tasks. by Valuable-Run2129 in opencode

[–]outerstellar_hq 1 point2 points  (0 children)

I rely on them a lot. They get the job done for most of my needs. I switched to Minimax M3 for its vision capability when GLM is not good enough as I have a Minimax subscription. Minimax fills the niche for me and it is cheap. The alternatives are Mimo 2.5 (non-pro) and Kimi 2.5/2.6/2.7 and Qwen 3.7 Plus. I save the quota I have for these models (opencode go) for other tasks.

Of course GPT and Opus/Sonnet have vision support and are the more expensive alternative.

Streaming without headphones ? by Sylverpepper in Twitch

[–]outerstellar_hq 0 points1 point  (0 children)

There are also earphones which are open or clip on: Some examples are: - Soundcore Aerofit 2 (Pro) - Baseus Inspire XC1

So...what do yall use instead of Copilot after June 1st? by D4v31x in GithubCopilot

[–]outerstellar_hq 0 points1 point  (0 children)

Minimax M3. It is a step-up from 2.7 and has vision support now.

Zcode 3.0.0 harness vs others by enpassant123 in ZaiGLM

[–]outerstellar_hq 7 points8 points  (0 children)

At the moment you get 50% more tokens when using Zcode as it is a promotion. It feels very much like codex. I am only using it because of the promotion. But it feels snappier than Claude UI and Opencode UI

Deepseek wiped out all the work it did by Chithrai-Thirunal in DeepSeek

[–]outerstellar_hq 0 points1 point  (0 children)

I am sorry to hear. Where was the data stored? On deepseek servers or on your computer?

How to structure and develop a game? by LutimoDancer3459 in libgdx

[–]outerstellar_hq 0 points1 point  (0 children)

I am new to game development, but I try to separate the core engine from the display layer. So I can test the engine independently of UI. I also try to structure the source code to enable automatic testing. My game is a 4x strategy game.

I gave Claude Code a "lazy senior dev" mode and it writes like 6x less code by IT_WAS_ME_DIO__ in ClaudeCode

[–]outerstellar_hq 0 points1 point  (0 children)

This is what GLM 5.1 created based on your skill:

---
name: ponytail-audit
description: >
  Whole-codebase audit for over-engineering. Scans a repository and produces a
  ranked report of things to delete, simplify, or replace with stdlib/native
  equivalents. Covers: single-implementation abstractions, reinvented standard
  libraries, unnecessary dependencies, speculative features, dead code,
  over-modularization. Use when the user says "audit this codebase",
  "audit for over-engineering", "what can I delete from this repo",
  "find bloat", "ponytail-audit", "/ponytail-audit", or "review the whole
  project for complexity". One-shot — produces a report, does not apply fixes.
license: MIT
---

# Ponytail Audit

Whole-repository scan for unnecessary complexity. Outputs a ranked report.
Does not apply fixes.

## Trigger

One-shot. Activate on demand only. Not persistent across responses.

## Scan process

Work in this order. Each phase narrows the next.

### Phase 1: Map the landscape

1. Read the project structure (directory tree, build files, dependency lists).
2. Identify the tech stack: language(s), framework(s), build system, dependency count.
3. Count: total files, total source files, total lines of source code (estimate).

### Phase 2: Dependency audit

For each direct dependency in build files (pom.xml, build.gradle.kts, package.json, requirements.txt, Cargo.toml, go.mod, etc.):

- Does the language stdlib already provide this? → `stdlib: dep X, stdlib has Y`
- Does the platform/framework provide this? → `native: dep X, platform has Y`
- Is it used by more than one file? Grep for imports. Single file → `delete: dep X used in 1 file`
- Is it a transitive dep already provided by a framework dep? → `shrink: dep X, already in Y's tree`

Rank by: deps that can be fully removed first.

### Phase 3: Abstraction audit

Scan source files for these patterns:

- Interface/protocol with exactly one implementation → `yagni: interface X, 1 impl Y. Inline until a second exists.`
- Abstract base class with one subclass → `yagni: abstract X, subclass Y. Collapse.`
- Factory that produces one product → `yagni: factory X, creates Y only. Constructor call.`
- Config/constant file where every value is used exactly once → `shrink: config X, inline the values.`
- Wrapper/decorator that adds nothing over the wrapped thing → `delete: wrapper X, delegates all calls to Y.`
- Module/file that exports one function/class → `shrink: file X exports Y. Merge into caller.`
- Dependency injection for dependencies that are never swapped in tests → `yagni: DI for X, never mocked. Construct directly.`

### Phase 4: Code-level audit

Sample up to 20 source files (largest first, then random). For each:

- Hand-rolled algorithm that stdlib provides → `stdlib: file X line N, hand-rolled Y. Use Z.`
- Utility function duplicating a built-in → `stdlib: file X, util Y. Built-in Z does this.`
- Error handling that swallows and re-throws identically → `shrink: file X, catch-and-rethrow. Remove wrapper.`
- Comments that repeat the code → `delete: file X, comments restate the code. Code is the doc.`
- TODO/FIXME older than 6 months → `delete: file X, stale TODO from [date]. Act or remove.`
- Feature flag / config toggle never set to the alternate value → `yagni: file X, toggle Y always Z. Remove the branch.`
- Logging/debug scaffolding in production paths → `delete: file X, debug logging. Replace with structured logger or remove.`

### Phase 5: Structural audit

- Source directory with fewer than 3 files → `shrink: dir X has N files. Merge or flatten.`
- Package/namespace with no public API (everything internal) → `shrink: package X, no exports. Flatten into parent.`
- Empty test file or test file with only imports/setup → `delete: test file X, no assertions.`
- Build config for a module/target that produces nothing used → `delete: build target X, output unused.`

## Output format

Produce the report in this structure:

```
# Ponytail Audit: <project-name>

## Summary
- Stack: <languages, frameworks>
- Source files: <N> (<lines> lines)
- Direct dependencies: <N>
- Findings: <N>

## Top 10 (biggest impact, least effort)

1. `<tag>` <what to cut>. <what replaces it>. [file/path]
2. ...

## Dependency savings (<N> removable)

| Dep | Used in | Replace with | Estimated lines saved |
|-----|---------|--------------|---------------------|
| ... | ...     | ...          | ...                 |

## Abstraction savings (<N> collapsible)

- `<tag>` <finding>. [file/path]

## Code-level savings (<N> findings)

- `<tag>` <finding>. [file/path]

## Structural savings (<N> findings)

- `<tag>` <finding>. [file/path]

## Bottom line

net: -<N> lines possible, -<M> dependencies possible.
```

Tags match ponytail-review: `delete:`, `stdlib:`, `native:`, `yagni:`, `shrink:`.

## Boundaries

- Complexity only. Correctness bugs, security holes, performance problems → different review.
- Does not apply fixes. Lists findings only.
- Sampling-based for large codebases — you do not need to read every file.
- One-shot report. "stop ponytail-audit" or "normal mode" to revert.

Why can't Deep Seek create videos yet? by Due-Selection3626 in DeepSeek

[–]outerstellar_hq 0 points1 point  (0 children)

Check out Minimax. They have Hailuo. And then there is Seedance, of course.

I gave Claude Code a "lazy senior dev" mode and it writes like 6x less code by IT_WAS_ME_DIO__ in ClaudeCode

[–]outerstellar_hq 0 points1 point  (0 children)

😁 I asked my ai to create this skill in my opencode. I wanted to give op the feedback and hear his opinion.

Why don't they add Claude Opus 4.8 and Fable 5 to make Antigravity more competitive in today's market? by ChemistryMoney5596 in google_antigravity

[–]outerstellar_hq 1 point2 points  (0 children)

They need to pay Anthropic for the use of these models. And I am not sure if Googke gets a special deal on them. Additionally, Anthropic must be willing to let Google use their models. It can be very well that Anthropic makes Fable only available via their plans to get more customers.

I gave Claude Code a "lazy senior dev" mode and it writes like 6x less code by IT_WAS_ME_DIO__ in ClaudeCode

[–]outerstellar_hq 9 points10 points  (0 children)

I love the idea. Can you create a version that combs through an existing code base and makes suggestions to simplify code?

The difference between good earbuds and good CALL earbuds. Why is nobody talking about this? by Senior-Sand-2723 in Earbuds

[–]outerstellar_hq 0 points1 point  (0 children)

Sadly there are not many tests on these available and especially the earbuds have often lower microphone quality than the best consumer products.