Close Menu

    Subscribe to Updates

    Get the latest Tech news from SynapseFlow

    What's Hot

    Government, Scientific Entities Hit via Daemon Tools Supply Chain Attack

    May 6, 2026

    All Life Uses 20 Amino Acids. Scientists Just Deleted One in Bacteria.

    May 6, 2026

    Onyx Boox Palma 2 Pro review: the pocket-sized ereader now has color, stylus support and mobile data

    May 6, 2026
    Facebook X (Twitter) Instagram
    • Homepage
    • About Us
    • Contact Us
    • Privacy Policy
    Facebook X (Twitter) Instagram YouTube
    synapseflow.co.uksynapseflow.co.uk
    • AI News & Updates
    • Cybersecurity
    • Future Tech
    • Reviews
    • Software & Apps
    • Tech Gadgets
    synapseflow.co.uksynapseflow.co.uk
    Home»Software & Apps»5 cool ways I use Claude Code that have nothing to do with coding
    5 cool ways I use Claude Code that have nothing to do with coding
    Software & Apps

    5 cool ways I use Claude Code that have nothing to do with coding

    The Tech GuyBy The Tech GuyMay 5, 2026No Comments7 Mins Read0 Views
    Share
    Facebook Twitter LinkedIn Pinterest Email
    Advertisement


    Claude has been wonderful, but not just because its Sonnet or Opus models are so good. In fact, a lot of Claude’s success comes from the tools Anthropic has built around those models.

    Advertisement

    Anthropic has made an arsenal of Claude tools, including the new Claude Design, but the main star among them all is still Claude Code. I use it a lot. One thing I do with it is have Claude Code write code, obviously, but I also use it for a lot of regular non-code work.

    Claude Code is a tool that gives an agentic AI access to a directory on your computer. It can run commands, send the result back to the LLM, and then have the LLM generate more commands until it gets the job done. That command can be anything.


    A solar system simulation build by Claude on a MacBook


    I asked Claude, ChatGPT, and Gemini to build a simulation, and one winner was obvious

    The LLM race stopped being a close contest pretty quickly.

    Batch rename files

    LLM-boosted PowerRename

    Claude Code terminal scanning journal directory and identifying empty files
    Amir Bohlooli

    This is the simplest one. If there’s a clear pattern in the file names and that’s all you want to change, this is one of those tasks you could probably do faster in Excel than by asking an AI. But in the case of documents, photos, and other media files, where you want the name to be descriptive, LLMs work really well.

    So, for instance, if I have a bunch of essay notes as PDF files, but they’re named “note (1).pdf,” I can quickly fix that with Claude Code. I open the folder, right-click, and launch a terminal in that directory (one of the perks of customizing the right-click menu in Windows). Next, I summon Claude. From there, I enter a prompt:

    These are my lecture notes. Scan the first few lines in each of these PDF files, then find the main topic, and rename the PDF to the topic. The name should be no longer than two words. Use hyphens.

    I press Enter. That’s it. Depending on your settings, Claude might ask you for permission and give you a preview of what it’s changing the names to. Accept, and you’re good.

    Since I’m using Claude in the terminal, nothing I do here is unique to Claude. I just happen to be using Claude. You can install Gemini or Codex in the terminal too and use those. They’re just as capable.

    Write descriptions of photos

    Claude can see, so use that

    Claude Code returning names for photos
    Amir Bohlooli

    Claude, and other big models, are not just text models. They can see images too. Combine that with the workflow above, and now you can have it rename photos to a neat description. I use a prompt like this:

    These are screenshots. Look at the photos and then write a clear, concise, descriptive alt text for each. Rename the photos to their alt text. Don’t use hyphens; use natural language. The names shouldn’t be longer than 80 characters.

    Enter, preview, enter, and we’re good. That’s it. Your photos will have to travel to Anthropic’s servers for this. After all, the model lives there, and to see the photos, they have to at least temporarily be uploaded. If that bothers you, you can try a local model. I’ve used Gemma 4 for the same task, and it’s really capable.


    Dual monitors, laptop, and a mechanical keyboard on a desk showing a local LLM with Gemma 4


    Gemma 4 is seriously capable

    Gemma 4 made local LLMs feel practical, private, and finally useful on everyday hardware.

    Compress, resize, and crop photos

    And videos!

    Claude Code analyzing images in a folder
    Amir Bohlooli

    Claude can write code, and code can work with almost anything. Therefore, Claude Code can work with almost anything that has a CLI tool or Python library. That includes photos and videos. The prompt is as simple as before:

    Crop these images to a 16:9 ratio. Make sure that the main window in the screenshot is centered. Leave the background as the padding; don’t crop it out.

    What Claude will do is the same thing we would have done ourselves for a task like this: write a Python script. It’s nothing magical or new. The new part is that Claude writes and executes the script for you. If you’ve got FFmpeg installed, you can let Claude know and ask it to use FFmpeg instead. FFmpeg on its own can already do a lot.

    You can use Claude Code in the Claude app, or summon it in the terminal. I prefer using it in the terminal because it’s so much easier.

    Remove empty files and notes

    I have too many of them

    I write my journal in Obsidian. Although it’s my ideal to journal every day, I don’t always get to. However, I have set my Obsidian vault to automatically create a journal entry for every day and put the tags and such in it. The result is that if I don’t journal today, there’s still a journal entry that exists. It isn’t exactly empty because it has those tags pre-filled, but it’s still just taking up space and misleading me. There have been many times when I click a journal entry to read it, only to see it’s actually blank.

    We can quickly fix this with Claude Code. However, this is a great example of a destructive task, where using AI could go wrong. What if Claude accidentally deletes non-empty journal entries? We don’t want that to happen, but we know that LLMs are still prone to hallucinations. So, we take a safer approach. we’re not going to straight up ask it to delete them. AI agents can go rogue, as we’ve all seen. In a case like this, it’s best to do it in multiple steps.

    First, we’ll ask Claude to flag the empty notes:

    This is my journal. There are some notes in it that are essentially empty. They have only the date and a journal tag. Some of them also have the to-do task list. But they don’t have actual journal content. Find these empty entries and list them for me.

    We’ve got results. But we won’t ask it to delete them just yet. Instead, we’ll ask it to move them to a new folder called “blank.”

    Make a folder called “blank” and move all of the notes you flagged there.

    Now, we’ll go take a look at the notes. Using the preview pane in File Explorer — a neat trick, by the way — I can see that they’re actually empty. So, I can delete them. Done.

    Run semantic analysis

    On yourself?

    On that same note, I can use Claude for much more and really put the LLM part to work. One interesting use case is semantic analysis. Obsidian’s relatively new Database feature is great, but it’s not of much use without some really good note properties. I can use Claude to make those properties with a prompt like this:

    This is my journal. These are MD files written in Obsidian. Analyze them and, for each of these, set a value from one of these seven: agitation, descent, reflection, conflict, longing, observation, reconstruction. This value should be set based on the semantic content of the entry.

    I got a table. I checked it, and it was accurate. Then I accepted the edits, and Claude went ahead and added the property to the notes. Now, when I check the journal database in Obsidian, it has some interesting info.

    I didn’t feed Claude the full thing. This was for demonstration purposes — I’d rather not upload my personal journal to Anthropic’s servers. That’s what a local LLM is for, and remember, you can use Claude Code with a local LLM.

    Claude Code is way more than a coding tool

    Claude Code is sold as a coding tool because, well, it can write code. But what makes it useful is not the code part. It’s the fact that it can look at a folder, understand what’s inside it, run commands, make changes, and then check its own work. That makes it useful for all sorts of boring file work that would otherwise take too much clicking, too much scripting, or too much patience.

    claude

    Developer

    Anthropic PBC

    Price model

    Free, subscription available


    Advertisement
    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    The Tech Guy
    • Website

    Related Posts

    Your Android TV has a one-click speed boost hiding in plain sight

    May 6, 2026

    Logi Options+ lets you control and personalize Logitech devices

    May 5, 2026

    Your Samsung TV has a secret menu that does 5 things you actually need

    May 5, 2026

    Sorry something went wrong and Word was unable to start [Fix]

    May 4, 2026

    There’s a free way to use Claude Code — and it’s surprisingly simple

    May 4, 2026

    I switched to a TV with Google TV and spent a week fixing what Google got wrong

    May 4, 2026
    Leave A Reply Cancel Reply

    Advertisement
    Top Posts

    The iPad Air brand makes no sense – it needs a rethink

    October 12, 202516 Views

    ChatGPT Group Chats are here … but not for everyone (yet)

    November 14, 20258 Views

    Facebook updates its algorithm to give users more control over which videos they see

    October 8, 20258 Views
    Stay In Touch
    • Facebook
    • YouTube
    • TikTok
    • WhatsApp
    • Twitter
    • Instagram
    Advertisement
    About Us
    About Us

    SynapseFlow brings you the latest updates in Technology, AI, and Gadgets from innovations and reviews to future trends. Stay smart, stay updated with the tech world every day!

    Our Picks

    Government, Scientific Entities Hit via Daemon Tools Supply Chain Attack

    May 6, 2026

    All Life Uses 20 Amino Acids. Scientists Just Deleted One in Bacteria.

    May 6, 2026

    Onyx Boox Palma 2 Pro review: the pocket-sized ereader now has color, stylus support and mobile data

    May 6, 2026
    categories
    • AI News & Updates
    • Cybersecurity
    • Future Tech
    • Reviews
    • Software & Apps
    • Tech Gadgets
    Facebook X (Twitter) Instagram Pinterest YouTube Dribbble
    • Homepage
    • About Us
    • Contact Us
    • Privacy Policy
    © 2026 SynapseFlow All Rights Reserved.

    Type above and press Enter to search. Press Esc to cancel.

    Ad Blocker Enabled!
    Ad Blocker Enabled!
    Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.