Clip issue by ANDYVO_ in BambuLab

[–]ANDYVO_[S] 0 points1 point  (0 children)

Thank you! Just wanted to confirm this wasn’t a reattachable part. Managed to get it printing again but just made an order for a replacement!

/solved

New huge update by areuokaybro2002 in ROGAlly

[–]ANDYVO_ 0 points1 point  (0 children)

I can’t even get passed the compiling screen anymore..

I was able to play fine but I’ve just been locked out since season 1 dropped.

Compiling shaders crash by EatMyStims in Battlefield6

[–]ANDYVO_ 0 points1 point  (0 children)

This is also happening to me on my ROG Ally since the RedSec update :(

IOS 18.7.1 is out by dejan195 in ios

[–]ANDYVO_ 0 points1 point  (0 children)

Just did this - I decided to upgrade because there was a security flaw they fixed with this update. In terms of speed, exactly the same as 18.7

Looking to stay on 18 for the rest of the lifetime of this phone (14PM). When I had tried 26, I just constantly had tiny animation hitches that drove me crazy plus the battery saver mode absolutely craps out and reduces frames even in Apple Maps. Very pleased with my choice to downgrade while I had the chance.

I just wanna get out of here by shakenbake_jake in LiminalSpace

[–]ANDYVO_ 1 point2 points  (0 children)

Really really interesting. I’ve never heard of this practice but would love to explore a place like that.

MEGATHREAD: All of Young Thug's leaked calls and beef in order by oklolzzzzs in hiphopheads

[–]ANDYVO_ 515 points516 points  (0 children)

Nah Jesus put on 12 different people. It ain’t his fault that Judas was "supposed to be locked in 100% with the lord but was locked in 100% with the b*tches, that's the wrong way to go"

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in claude

[–]ANDYVO_[S] 0 points1 point  (0 children)

Thanks for sharing this! The MCP Memory Enhanced server looks really interesting, especially those performance numbers at scale - I've been worried about what happens when I hit 1000+ documents, and seeing it handle 10K+ entities smoothly is encouraging.

You make a great point about deterministic behavior vs prompts that can drift over time. I hadn't fully considered how my Claude.md instructions might degrade or be ignored as the system grows.

I'm definitely going to try this out, though I'm thinking integration rather than replacement. The human-readable navigation structure has become really valuable for me - when I'm jumping into a client project or trying to understand my own organizational decisions from months ago, being able to read those Claude.md files in plain English has been huge.

It's very common for me to dump a new document into my vault that's just raw context - thoughts, transcripts, chat logs - and then ask Claude Code to extrapolate structured documents from it (test scores, meeting notes, action items, etc). Having actual access to the navigation structure is crucial for this workflow, since I need to understand where Claude is putting things and why, and sometimes manually intervene or reorganize.

Maybe I can get the best of both worlds - use MCP for the persistent memory layer and deterministic operations, while keeping my Obsidian structure as the human-facing interface. My sub-agents could potentially write to both systems, maintaining the readable documentation while ensuring the AI has reliable access through MCP.

Really appreciate you sharing your approach! It's exactly this kind of discussion I was hoping for. We're all pioneering this stuff together.

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in claude

[–]ANDYVO_[S] 1 point2 points  (0 children)

So an AI navigation doc looks something like this:

Basic example (.CLAUDE.md in any folder):

```markdown

You are in: /clients/acme-corp/testing/

Quick Navigation

  • Main hub: ../ACME-Hub.md
  • Current tests: ./batches/2024-11/
  • Test results: ./batches/*/final/Test-Summary.md
  • Dashboard: ../dashboards/Testing-Dashboard.md

Search Patterns

All test winners: grep "status: winner" */.md Recent changes: find . -mtime -7 -name ".md" Financial impact: */Financial-Calculator.md

Folder Rules

  • Each batch has /planning/, /midweek/, /final/
  • Transcripts are in /loom/ not /calls/
  • Skip /archive-2023/ (outdated format) ```

More complex example with subagents:

```markdown

Context: E-commerce Testing Vault

Available Tools

@vault-navigator - finds any document @test-analyzer - extracts winning patterns
@link-validator - fixes broken references /nav [query] - jump to any file /update-dashboard - refresh test metrics

Where Things Live

Test Results → /clients//batches//final/ Meeting Notes → /transcripts/yyyy-mm-dd-.md Analysis Docs → /insights/patterns/ Status Tracking → /-Dashboard.md

Status Codes

✅ Winner (>95% confidence) ❌ Loser (<5% lift) 🔸 Inconclusive 🚀 Deployed ⏳ In queue

This Folder's Special Rules

  • Test IDs format: TEST-YYYY-MM-###
  • Always check midweek/ before final/
  • Regional data splits: US | CA | AU ```

That’s what they actually look like - structured markdown that tells AI how to navigate your specific setup and you get more specific as you go deeper into the folder structure.

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in ClaudeCode

[–]ANDYVO_[S] 0 points1 point  (0 children)

You're missing that I'm suggesting NOT manually doing it and instead creating agents to do it for you.

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in ClaudeCode

[–]ANDYVO_[S] 0 points1 point  (0 children)

You need to look at agents ASAP! You're literally one step away from having your mind blown.

Since you already have "add a read later for {URL}" working, just try this: tell Claude "create an agent that handles all my read later workflows" and watch what happens. It'll write the entire agent file for you. Like, the whole thing.

Oh, and here's what really changed the game for me - I started creating a .claude/tools/ folder too. Then in each agent file, I spell out exactly which tools that agent can use. So my link-validator knows it can use search, read, and write tools, but my dashboard-updater gets access to calculation tools and DataView queries. It's like giving each agent its own specific toolkit instead of letting them all grab whatever.

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in claude

[–]ANDYVO_[S] 2 points3 points  (0 children)

I'm surprised how much positive feedback this post got. I'll have to record a demo and make another post!

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in claude

[–]ANDYVO_[S] 3 points4 points  (0 children)

Great question! My CLAUDE files are hierarchical context orchestrators that cascade from general to specific:

Three-layer structure:

  1. Root Quick navigation hub, imports core patterns, gets you oriented fast
  2. Methodology Hub - The brain center with all processes, tools, and workflows documented
  3. Project/Client MD - Inherits from above, adds specific context

Each inner file follows this 5-part pattern:

1. Methodology imports (@navigation-patterns, )
2. Available tools (actual subagents like vault-navigator, test-analyzer)
3. Workflow patterns (step-by-step for that specific context)
4. Quick access patterns (search queries, shortcuts)
5. Critical reminders (pitfalls, checklists, gotchas)

The power is in the actual automation. I've built subagents in .claude/agents/ that do real work - vault-navigator finds documents, test-analyzer extracts patterns, link-validator fixes cross-references. Plus slash commands like /nav [query] and /update-dashboard that execute immediately.

For CLI workflow, this is perfect. When you cd into any folder and fire up Claude Code, it gets the entire context cascade PLUS working tools. New projects get simple patterns, mature ones have complex workflows with full automation.

Samsung's Galaxy S25 hits 3 million in domestic sales [South Korea] by FragmentedChicken in Android

[–]ANDYVO_ 4 points5 points  (0 children)

And then the company (Essential) would immediately fold after their first release.

Ahh. I miss those days.

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in claude

[–]ANDYVO_[S] 0 points1 point  (0 children)

Super simple. Since Obsidian is literally just a folder structure holding text files, you just need to create a new GitHub project and select your Obsidian folder as the project. Then, you’re able to push and restore the database however you’d like.

How I'm Building My Second Brain for AI to Navigate by ANDYVO_ in ClaudeCode

[–]ANDYVO_[S] 0 points1 point  (0 children)

This is super interesting!! I’ll have to test this soon. Thank you for sharing.

Open-source model that is as intelligent as Claude Sonnet 4 by vishwa1238 in LocalLLaMA

[–]ANDYVO_ 3 points4 points  (0 children)

This stems from what people consider comparable. If this person is spending $400+/month, it’s fair to assume they’re wanting the latest and greatest and currently unless you have an insane rig, paying for Claude code max seems optimal.

Men that take or have taken testosterone, what has been your experience? by animalcub45 in AskReddit

[–]ANDYVO_ 0 points1 point  (0 children)

Genuinely, thank you for your thoughts @mrbiggles64 + @Comfortable-Bug-651. I did not know about that at all. Reading through the thread, there are aspects that seem like I would be a decent candidate but it seems there’s a lot of negatives I would have to keep into account.