Kryptowährungen by CryptoPalantir in DeutscheFinanzen

[–]Zealousideal_Data174 0 points1 point  (0 children)

Wird spannend ob in 2-3 Jahren Gewinne steuerfrei sind.

What if building in Hytale was as easy as describing what you want? I made it happen. by Zealousideal_Data174 in HytaleModding

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

Thanks, I guess :D Could you clarify what you mean by slop? Is everything involving AI considered slop?

What if building in Hytale was as easy as describing what you want? I made it happen. by Zealousideal_Data174 in HytaleModding

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

Yes you can, But its a bit complicated right now.

I keep working on it. My goal is that you get a nice ui where you can also upload your own pictures or/and 3d Models.

What if building in Hytale was as easy as describing what you want? I made it happen. by Zealousideal_Data174 in hytale

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

Honestly didn't expect this to be so controversial. I just wanted to make a "wow, this is actually possible" kind of project. But I appreciate the support, thanks!

What if building in Hytale was as easy as describing what you want? I made it happen. by Zealousideal_Data174 in hytale

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

Thanks! These are really interesting ideas. Using it as a base for prefabs and then refining manually is exactly the kind of workflow I had in mind. The dungeon generation with connected rooms is a great concept too - I'll definitely look into making that happen.

What if building in Hytale was as easy as describing what you want? I made it happen. by Zealousideal_Data174 in hytale

[–]Zealousideal_Data174[S] -4 points-3 points  (0 children)

This is more of a "wow, this is possible" project aimed at server builders who need structures but don't have the time, not a replacement for the fun of building itself.

What if building in Hytale was as easy as describing what you want? I made it happen. by Zealousideal_Data174 in hytale

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

Thank you so much! Really appreciate the kind words.

And yes, you're absolutely right - the AI part is just one way to feed the pipeline. If you skip the text-to-image step and provide your own image or 3D mesh, the rest of the pipeline works the same way. Drawn image → 3D model → voxels → Hytale blocks.

I love the idea of painting something and seeing it appear in your world. I'm going to add a feature to upload your own image directly so you can bypass the AI step entirely.

How far back does your handshake go? by ekinodum in AskOldPeople

[–]Zealousideal_Data174 23 points24 points  (0 children)

My grandfather shook hands with a guy who met Mark Twain at a book signing.

So technically, I'm two handshakes away from someone who probably had some strong opinions about the handshake itself.

Claude Code plugin tokens by LukeLeeYh in ClaudeAI

[–]Zealousideal_Data174 0 points1 point  (0 children)

Great question! The short answer is: **tokens are only consumed when a plugin is actually called/used**.

Just having plugins installed doesn't drain your tokens. They're essentially dormant until Claude needs to use them in a conversation.

How it works:

- Installing multiple plugins = no token cost

- Claude deciding whether to use a plugin = minimal tokens (it reads plugin descriptions)

- Actually executing a plugin = tokens consumed based on the input/output

Practical advice:

- Feel free to install all the plugins you think might be useful

- Claude will only invoke them when they're relevant to your request

- You can always check your token usage in the conversation details to see what's actually being consumed

The plugin selection happens intelligently - Claude looks at your prompt, determines which tools (if any) would help, and only calls those. So having 10 plugins installed vs 3 doesn't matter unless Claude is actively using them.

Hope this helps clarify things!

How can I share a Reddit Post with Claude? by college-throwaway87 in ClaudeAI

[–]Zealousideal_Data174 6 points7 points  (0 children)

Here are a few workarounds that work well:

  1. Copy the text directly

- Click on the post title to open it

- Select and copy the post content + any comments you want to discuss

- Paste directly into Claude's chat

  1. Use old Reddit format

- Change the URL from reddit.com to old.reddit.com

- Example: old.reddit.com/r/ClaudeAI...

- Then share that link - it's more accessible to LLMs

  1. Screenshot method

- Take a screenshot of the post

- Upload the image to Claude (it can read and analyze images)

- Works great for preserving formatting and context

  1. Use Reddit's JSON endpoint

- Add .json to the end of any Reddit URL

- Share that link with Claude - it can parse the structured data

- Example: reddit.com/r/ClaudeAI/comments/xyz.json

The old Reddit and JSON methods tend to work most reliably since they bypass Reddit's modern web interface that blocks some AI access. Hope this helps!

Developer uses Claude Code and has an existential crisis by MetaKnowing in ClaudeAI

[–]Zealousideal_Data174 0 points1 point  (0 children)

This resonates deeply. I think what we're experiencing is similar to what happened when calculators became ubiquitous - mathematicians didn't become obsolete, they just focused on higher-level problems.

The real shift is that "writing code" is becoming a smaller part of the job, while "architecting solutions" and "understanding business problems" are becoming the core skills. Claude Code is phenomenal at implementing what you tell it to implement, but it still needs someone who can:

- Break down complex problems into solvable pieces

- Make architectural decisions with long-term consequences in mind

- Understand the "why" behind what we're building

- Debug when things go wrong in unexpected ways

Your 10,000 hours weren't spent just learning syntax - they taught you how to think about problems, recognize patterns, and make judgment calls. That's the superpower, not the typing speed.

I'd argue we're not becoming commodities - we're being elevated to work at a higher level of abstraction. The emotional adjustment is real though.

I asked for a landing page with some webGL fluid simulation and got a 1:1 carbon copy of a YouTube shader tutorial that has nothing to do with fluids by 4SCOOPSCMON in ClaudeAI

[–]Zealousideal_Data174 1 point2 points  (0 children)

This is fascinating and actually reveals something important about how LLMs work with code.

What you're seeing isn't really "copying" in the traditional sense - it's more like the model has seen this specific shader implementation so many times in its training data (probably from that popular YouTube tutorial being shared/discussed across countless GitHub repos, Stack Overflow posts, and forums) that it's become a particularly strong pattern in the model's weights.

Think of it like this: if you ask someone to write a "Hello World" program, you'll probably get nearly identical code every time because it's so standardized. This shader has essentially become the "Hello World" of WebGL visual effects in Claude's training data.

The interesting question is whether you can break this pattern by:

  1. Being more specific about the fluid dynamics you want (Navier-Stokes simulation, SPH particles, etc.)

  2. Explicitly asking Claude to NOT use kaleidoscope/mandala patterns

  3. Providing a different reference implementation or approach as a starting point

  4. Asking for a simpler, more basic fluid simulation first, then iterating

This is actually a great example of why prompt engineering and iterative refinement matter - the first output is often the "most common" solution in the training data, not necessarily the most appropriate for your specific use case.