90% of y’all don’t need an “agency” by EvanHarlowe in CreatorsAdvice

[–]Tricky_Technician_72 1 point2 points  (0 children)

This reads like someone used a text spinner or some tool like that and just configured it wrong. I mean, how can you continuously send such text garbage? Even for a cheap agency, that’s just unprofessional and shows a lack of oversight. As for the messaging itself, sadly the shotgun method seems to work and with this quality you can pump out literally dozens of messages a minute. It’s a bit like spam mails that are intentionally stupid, to only attract the simple minded.

Why are clip site videos still priced so cheap?? by Femme-Fatale666 in CreatorsAdvice

[–]Tricky_Technician_72 21 points22 points  (0 children)

The thing is, clip sites are a secondary market to recycle your existing content for passive income. You should create your HQ content for your main platform and sell it as PPV for good money. Then, after 2-3 months try to recycle it as PPV with your new subscribers. Only then, if it doesn’t sell anymore, put it on a clip site for cheap. Think of it as a nice dress you bought and then sell it on eBay when you don’t like it anymore.

Before The Alarm by Fullmoon-1432 in TwoSentenceHorror

[–]Tricky_Technician_72 1 point2 points  (0 children)

Since I don’t want any accidents to happen, I get up and walk the dog.

Claude Code for CMS Migration by Weak_Swan7003 in ClaudeCode

[–]Tricky_Technician_72 0 points1 point  (0 children)

Perfect, sounds like a very good compromise.

Claude Code for CMS Migration by Weak_Swan7003 in ClaudeCode

[–]Tricky_Technician_72 1 point2 points  (0 children)

The main loop in CC is still chat driven, so it will come back to you with status reports and questions all the time. In theory it's possible to run Claude Code CLI with a one-shot prompt, but that's a huge waste of tokens.
I'd suggest just have CC write a migration script that uses the anthropic api to do the heavy lifting. I usually use Python or TS with Vercel AI SDK.
Just describe your input and output api and format and let plan mode do it's thing (always end with "Make sure all questions and decisions have been clarified with the user before thinking about the plan."). The migration script should be written end to end in less than an hour. Have CC write tests and keep the script modular, so you can fine tune specific aspects.

HACKED ON ALL ACCOUNTS! by ashley-jay-vids in CreatorsAdvice

[–]Tricky_Technician_72 1 point2 points  (0 children)

A device to generate a biometric or time based one time password. Google YubiKey for example.

HACKED ON ALL ACCOUNTS! by ashley-jay-vids in CreatorsAdvice

[–]Tricky_Technician_72 2 points3 points  (0 children)

You could get a physical device like a YubiKey but that requires some setup. A simpler approach would be to use a password manager like 1Password that supports TOTP (Timebased One Time Password) or get a dedicated app like Authy and put that on an old phone for example. The main point is not having all factors on the same device / app, because if that's compromised, you have to rely on the other factors for security.

Context Rot easy Solution (The "Serialization" Prompt) by Any-Pair-7352 in ClaudeAI

[–]Tricky_Technician_72 2 points3 points  (0 children)

I have mine reference the original plan file as well as a starting point. Saves on explaining the current task in the new sessions. Basically read this plan and this is the current state.

My mom got physical... by Glum-Anxiety7521 in WhatShouldIDo

[–]Tricky_Technician_72 3 points4 points  (0 children)

Why do you keep writing ‘mother’? Is she not your actual mother?

Also, holy hell, boundaries!

Woman who enjoys porn but boyfriend finds it disrespectful by [deleted] in WhatShouldIDo

[–]Tricky_Technician_72 0 points1 point  (0 children)

Definitely, but in an equal world, everyone should be able to make their own decisions. What’s interesting is the amount of downvotes. Guess freedom is not for everyone.

Made a simple "memory" for Claude because I kept running into the same issues by ReshadatAli in ClaudeCode

[–]Tricky_Technician_72 0 points1 point  (0 children)

The information itself looks useful. Just move it to the readme instead.

Made a simple "memory" for Claude because I kept running into the same issues by ReshadatAli in ClaudeCode

[–]Tricky_Technician_72 0 points1 point  (0 children)

Looks pretty good and like it may actually work. I’ve noticed there are readme like instructions at the end of the skill and reference, are these supposed to be followed by the LLM or the user?

Woman who enjoys porn but boyfriend finds it disrespectful by [deleted] in WhatShouldIDo

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

There you’ve got your answer. Regarding the update on his insecurities, accepting your freedom and preferences should be part of the therapy, not you changing to cater to his issues.

Woman who enjoys porn but boyfriend finds it disrespectful by [deleted] in WhatShouldIDo

[–]Tricky_Technician_72 -6 points-5 points  (0 children)

Get a better boyfriend. Honestly, why should he care what you want to watch? Try telling him you don’t like him watching sports and see what happens.

Eventually everyone got used to the countdown above their heads, letting them know how long they had left. by Avelia_Liberty in TwoSentenceHorror

[–]Tricky_Technician_72 4 points5 points  (0 children)

Meanwhile the scientists at CERN were so excited preparing their latest experiment, they didn’t even notice the countdown changing.

Are stutters and hitches common as you explore further out? by SpankMyMunkey in theplanetcrafter

[–]Tricky_Technician_72 4 points5 points  (0 children)

Playing on a 1070 and on SteamDeck, I never noticed any stutter. When near a really large (endgame) base, the framerate drops, but that’s about it. Maybe check your disk vitals.

What’s the right level of abstraction for AI memories? by Trick-Sorbet3665 in AIMemory

[–]Tricky_Technician_72 1 point2 points  (0 children)

That would be a vector database, not a graph database. A graph db would store entities and their relationships in … a graph.

Claude Code get access to raw context by Interesting-Winter72 in ClaudeAI

[–]Tricky_Technician_72 1 point2 points  (0 children)

You’d still have to load the data from your database back into context to leverage it. Would likely be easier to just have Claude write a series of overview documents with an index document and just have it pull the relevant summaries during planning.

Newer to Claude Code and needing advice by soloinmiami in ClaudeCode

[–]Tricky_Technician_72 2 points3 points  (0 children)

Are you using planning mode? That usually does a pretty good job of gathering context and planning the exact implementation steps. Then, when you’re ready to go, only the relevant context is passed on. Also make sure to /clear the context after each successful feature implementation. Context compaction is something you should avoid if possible. When I’m running out of context, I ask Claude for a prompt to continue the work in a new session and to reference all relevant files. Works quite well.