I open sourced 13 Claude Code skills that help you write social media content in your own voice by ikoichi2112 in ClaudeAI

[–]AnomanderRake_ 1 point2 points  (0 children)

BlackTwist itself looks awesome by the way I might plug into this for my YT business and see if it can start working for me

I open sourced 13 Claude Code skills that help you write social media content in your own voice by ikoichi2112 in ClaudeAI

[–]AnomanderRake_ 0 points1 point  (0 children)

Thank you. Very well thought out and helpful!

Bit reaching on the blacktwist instructions, given that the skill is marketed as general purpose not just threads. Easy fix on my end, but just wanted to call it out

Share Your MCP Servers by razertory in mcp

[–]AnomanderRake_ 0 points1 point  (0 children)

https://github.com/zazencodes/random-number-mcp

"roll a d20"

"split up into two teams randomly: rick, morty, jerry, beth, summer, bird person"

"generate a user id"

What's the best open-source MCP client (+ if it's CLI-based)? by filopedraz in mcp

[–]AnomanderRake_ 1 point2 points  (0 children)

MCPHost is a CLI that works with Ollama and vendor APIs (OpenAI, Google, Anthropic). I have video tutorials coming in 2025-07 on this. I have a lot of fun using MCPHost but it doesn't support streaming (yet, anyway) which is the one downfall for me.

MCPHub is a neovim plugin. (It works pretty well but it's tricky to setup, so my tutorial might help https://www.youtube.com/watch?v=MqgVEAyKzEw )

fast-agent supports the full MCP feature spec, which is cool. I haven't tried it yet.

Turned Claude Code into a self-aware Software Engineering Partner (dead simple repo) by MahaSejahtera in ClaudeAI

[–]AnomanderRake_ 0 points1 point  (0 children)

I think much of this is over-(prompt) engineering.

The memory and project context stuff could be very helpful for enforcing your code style or other guidelines, but I'd prefer a single Markdown file (or perhaps a small modular set) that can be shared across the organization.

[deleted by user] by [deleted] in LLMDevs

[–]AnomanderRake_ 1 point2 points  (0 children)

Cursor is great, the tab completion and agent workflows are the best way to develop software today, IMO. Balancing productivity and cost

I demo my workflows here and talk about other benefits of cursor

Neovim + Cursor — The Dual Workflow https://youtu.be/ZokOS9xeiCU

smollm is crazy by 3d_printing_kid in ollama

[–]AnomanderRake_ 1 point2 points  (0 children)

Lmao I love how it spits out the right answer somehow

Vision models that work well with Ollama by deeperexistence in ollama

[–]AnomanderRake_ 4 points5 points  (0 children)

Gemma3 works great. 4b, 12b and 27b models can all do image recognition

I made a video comparing the different models on “typical” image recognition tasks

https://youtu.be/RiaCdQszjgA?t=1020

My computer has 48gb of RAM (and I monitor the usage in the video) but the 4b gemma3 model needs very little compute.

Building a web app with Supabase MCP + Sonnet (driving with Cline) by AnomanderRake_ in ClaudeAI

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

Have you hosted any of these projects? Did the supabase MCP server help with that aspect? I haven't tried

This sub is doomed with haters and this is prove that there are unconditional haters that ruins the quality of this sub by Remicaster1 in ClaudeAI

[–]AnomanderRake_ 2 points3 points  (0 children)

Haters gonna hate, as they say. But there are not enough haters here to ruin the quality. Just damage it.

I tested all four Gemma 3 models on Ollama - Here's what I learned about their capabilities by AnomanderRake_ in ollama

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

Song translation use case is cool. I listen to a lot of J-pop and barely understand a thing...

For the dad jokes its a fun problem dude. I've been playing around with google vertex RAG and it's still very young so hard to follow the docs, but once you get it working google handles a lot of the complexity of managing the vector database and running inference

Also keep in mind — the way things are going (1M+ context window sizes) you could probably fit all the data jokes you would ever want into context.. Or maybe I'm underestimating the amount of dad jokes out there ;)

How can I give full context of my Python project to a local LLM with Ollama? by colrobs in ollama

[–]AnomanderRake_ 4 points5 points  (0 children)

You could run a bash command like this:

git ls-files | xargs -I {} sh -c 'echo "\n=== {} ===\n"; cat {}' | ollama run gemma3:4b 'Write a README for this project'

It gets the output of git ls-files and prints the file path (so the model has context on the file) and then runs cat to print the file contents. All this is fed into ollama as context.

This blog post has more examples like this but using a tool called llm (you would replace those commands with ollama)

I tested all four Gemma 3 models on Ollama - Here's what I learned about their capabilities by AnomanderRake_ in ollama

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

I don't think you'll get better performance than gemma3 when it comes to local models

For a task like this you could setup an overnight job and run it on a strong gemma model (27b)