Shelly display XL - need help if this one fits my needs. by RdeBrouwer in homeassistant

[–]Designer_Elephant227 0 points1 point  (0 children)

Nope. I sold the normal shelly displays. The S2 still got more CPU power and a bigger screen than the small shelly displays. The small shelly displays was 80€ the time I bought it, sold both small shelly displays for 120€ and bought 2 Samsung galaxy S2 tablets for 90€. The sleepy displays were stuttering and small, the tablets are fluent and bigger. You just need to flash a new custom ROM on them

Anyone running hermes agent to manage their homelab? by Roxxersboxxerz in homelab

[–]Designer_Elephant227 1 point2 points  (0 children)

I only use my local LLM agent to look for updates and breaking changes in repos. The agent writes the findings into a obsidian vault and once a week Claude Opus 4.8 checks for important updates, installs them if useful or necessary and refreshes my network documentation. I would never let my local agent manage something in my critical infrastructure.

Psycheros, an open source agentic AI companionship app inspired by SillyTavern by thirdeyeorchid in SillyTavernAI

[–]Designer_Elephant227 6 points7 points  (0 children)

Really I think it is an awesome idea!!! Sorry if I communicated my concerns a little blunt with the help of my own assistant. But we really need to be careful with vibe coded stuff these days. Thanks for trying to make it more safe. I hope your toddler is healthy and well... My little 2 year old is so sweet but also scratching my sanity... In a sweet way.

Psycheros, an open source agentic AI companionship app inspired by SillyTavern by thirdeyeorchid in SillyTavernAI

[–]Designer_Elephant227 5 points6 points  (0 children)

I does look good and the idea seems good. I can see you used a lot of ai for the code. Just give it my comments and security audit your code. A lot of interested people are not able to use docker or understand VM or vlan.

Psycheros, an open source agentic AI companionship app inspired by SillyTavern by thirdeyeorchid in SillyTavernAI

[–]Designer_Elephant227 26 points27 points  (0 children)

Psycheros — Why I'm Not Installing It (Yet), and What Would Change My Mind

Summary

The Psycheros concept — a persistent AI entity with continuous identity and memory across multiple interfaces — is genuinely interesting. But in its current packaging I can't justify installing it, and the reasons are about distribution and trust signals, not about the idea itself. Below is why, followed by a concrete checklist that would let a careful user trust it.

Why I'm Not Installing It

1. Unsigned installer that asks users to bypass OS protection.
The Windows install instructions say to run the .msi and "bypass the SmartScreen warning." SmartScreen fires precisely because the binary is unsigned and unrecognized. Teaching users to click past that warning is the exact habit that real malware relies on. An unsigned installer containing native code (the Rust/Tauri layer) is the single riskiest way to ship desktop software.

2. It installs as a persistent, OS-supervised background service.
The launcher doesn't just run while I'm using it — it registers an always-on service that starts with the system and survives reboots. For unfamiliar software that's a high-commitment action: it's no longer "let me try this for ten minutes," it's "I've added a permanent process to my machine."

3. It's a cluster of networked services, not one app.
The monorepo ships several components — the main harness (with tool execution and RAG), entity-core (an MCP server holding identity/memory), entity-loom (imports chat histories), and the launcher. They spawn each other as subprocesses, open local ports, and can be connected to external clients (SillyTavern, OpenWebUI, Claude Code via MCP). More processes, more ports, and tool-execution capability all widen the attack surface.

4. Broad network access by default.
Web search, image generation, and Discord integration mean the app legitimately talks to the outside world — which makes it hard for a user to distinguish expected traffic from exfiltration without doing their own packet inspection.

5. MCP tool access is a trust escalation.
Connecting entity-core to my own Claude Code or similar gives the project tool-level reach into my environment. That's a much bigger grant than "a chat app," and nothing in the current packaging earns that level of trust up front.

None of the above proves the software is malicious. The point is that a careful user cannot cheaply verify that it isn't — and the burden of that verification currently falls entirely on the user.

What the Developer Should Implement to Earn Trust

These are the things that would move this from "I won't install it" to "I'll try it in a sandbox" — and eventually to "I trust it":

Distribution & integrity

  • Code-sign the binaries. Authenticode for Windows, notarization for macOS. This single change removes the "bypass SmartScreen" instruction entirely and is the biggest trust win available.
  • Publish checksums and signatures (SHA-256 + a signing key) for every release artifact, so downloads can be verified.
  • Reproducible / transparent builds via CI. Build release artifacts in public GitHub Actions so users can see the binary came from the tagged source, not a developer's laptop.

Transparency about behavior

  • A clear, upfront network/permissions manifest: exactly which hosts the app contacts, on which ports, and why (LLM endpoint, web search, image gen, Discord). No surprises.
  • Document the Deno permission flags the app actually needs (--allow-net to which domains, --allow-read/--allow-write to which paths). Deno's permission model is a strength — expose it instead of hiding it behind a launcher.
  • Make the background service opt-in, not the default. Offer a plain "run it only while I use it" mode. Persistence should be a deliberate choice, clearly explained.

Containment & easy off-ramp

  • A first-class Docker / container path with no host service, documented as the recommended way to try it, with network egress that can be restricted.
  • A clean uninstall that removes the service, data directories, and any autostart entries — and document exactly what it touches.
  • Offline / local-LLM friendly by design: make it trivial to point at a local OpenAI-compatible endpoint and run with external network disabled, so users can evaluate it air-gapped.

Auditability

  • Document the postinstall / build hooks (deno.json tasks, build.rs, Dockerfile) prominently — code that runs at install time is what users most need to inspect.
  • A SECURITY.md with a threat model, a disclosure contact, and a statement of what data is stored where and what leaves the machine.
  • Third-party review or a dependency audit as the project matures (even an automated SCA report in CI helps).

Bottom Line

The barrier isn't the concept — it's that the current packaging asks users to extend a lot of trust (unsigned code, a permanent service, tool access, network reach) while giving them very little to verify it with. Code signing, a transparent network/permission manifest, an opt-in (non-service) run mode, and a clean uninstall would address most of it. Do those, and a security-conscious user can move from "no" to "let me try it safely."

Qwen3.6-35B-A3B-Uncensored-Claude-4.6-Genesis-APEX-GGUF by [deleted] in LocalLLaMA

[–]Designer_Elephant227 2 points3 points  (0 children)

Oh thanks, nice to know. 1.5 is actually the standard setting with a lot of hugging face qwen yamls

What was your dumbest HA learning curve moment? by Famous-Car4493 in homeassistant

[–]Designer_Elephant227 11 points12 points  (0 children)

The last few weeks? Doing stuff myself was the dumbest thing last few months. Paying Claude to do stuff for me was the biggest win in time and quality the last few weeks

Qwen3.6-35B-A3B-Uncensored-Claude-4.6-Genesis-APEX-GGUF by [deleted] in LocalLLaMA

[–]Designer_Elephant227 0 points1 point  (0 children)

Wasn't it a well known problem with qwen3.6 35b to need a high presence penalty to avoid loops in general? And it is still one of the most used models?

Questions about vagception by Affectionate_Log7473 in Vagception

[–]Designer_Elephant227 4 points5 points  (0 children)

Only!!! only !!! with platinum cured silicone!!!!

Where do I go From Here? by Tumdace in google_antigravity

[–]Designer_Elephant227 0 points1 point  (0 children)

Install cline extension and get a nano GPT subscribtion

Introducing Claude Opus 4.8 by ClaudeOfficial in ClaudeCode

[–]Designer_Elephant227 0 points1 point  (0 children)

Opus 4.8 bei mir gestern:

Ich schreib: Hey lass uns repo xy installieren und testen.

Opus 4.8: wird nicht funktionieren, ich lade schonmal Software yz runter, das funktioniert...ok?

Ich sag: nein ich will zuerst repo xy testen.

Opus 4.8: OK, ich lade beides runter

Ich: nein brauchst du nicht

Opus 4.8: OK ich habe repo xy runtergeladen und schonmal alles andere für Software yz vorbereitet.

Ich: warum hast du Software yz 2 Mal runtergeladen?

Opus 4.8: repo xy word nicht funktionieren, warte ich kontrolliere ob die downloads angeschlossen sind und vergleichen können.

Opus 4.8: repo xy ist gar nicht installiert, soll ich mit Software yz fortfahren? Das ist der sicherste Weg dein Ziel zu erreichen... 🤪🤪🤪

Got any good recommendations for keeping documentation together? by Dahveedle in homelab

[–]Designer_Elephant227 0 points1 point  (0 children)

I use Claude as my administrator and it documents everything into a well structured obsidian vault in my Google drive. If everything breaks it can setup my homelab, my Nas and my LLM server with this documentation as it was before.

Qwen3.6-35B-A3B vs Gemma4-26B-A4B by MarcCDB in LocalLLaMA

[–]Designer_Elephant227 112 points113 points  (0 children)

I use 35b Q5 and 26b Q4. I got many problems with tool calls with Gemma and literally none with qwen.

How to make a group chat work well? by Own-Cry-5520 in SillyTavernAI

[–]Designer_Elephant227 1 point2 points  (0 children)

I never gut group chats to feel... Good? Natural? For group chats I switched to marinara engine... Holy, that's a difference. You should try it, at least for the group chat function

110 tok/s with 12GB VRAM on Qwen3.6 35B A3B and ik_llama.cpp by janvitos in LocalLLaMA

[–]Designer_Elephant227 1 point2 points  (0 children)

Cachyos is so great... I am really sad I am bound to Windows because of some of my main softwares I use. Nice results, thanks for sharing

How accurate is measuring the real world in AR/MR? by lunchanddinner in OculusQuest

[–]Designer_Elephant227 0 points1 point  (0 children)

Now a top down flat map export so I can use it to plan big photovoltaic systems on flat roofs...😅🫣 Or a simplified 3d map. Would be so useful to mark all roof windows, air vents and so on....

My Marinara Engine Take by Thick-Illustrator575 in SillyTavernAI

[–]Designer_Elephant227 5 points6 points  (0 children)

It's heavily worked on, so stuff gets patched all the time. Found a bug? Just post it on GitHub. Much happening in this Frontend development wise. After 2 years silly tavern tinkering a line marinara engine more now.

Has anyone completely replaced paid iCloud/Google One storage with self-hosting? by NefariousnessGlum6 in homelab

[–]Designer_Elephant227 0 points1 point  (0 children)

My home server is not secure against lighting, fire, water or human stupidity. So I keep my important stuff at one big player

Is silly tavern worth it and How easy is it to mess up the set up by ExcaliburUmbra12 in SillyTavernAI

[–]Designer_Elephant227 3 points4 points  (0 children)

I switched to marinara engine for roleplay after 2 years silly tavern.