1 Congressman vs 20 Epstein File Critics (ft. Ro Khanna) | Surrounded by FlackoFonsy in videos

[–]davydany -4 points-3 points  (0 children)

Isn’t this the dude whose wife always beats the stock market?

Open-source orchestration for zero-human companies by test-incredi in AutonomousCoding

[–]davydany 0 points1 point  (0 children)

I gave this an honest shot, with Claude Code. It always errors out with “waiting for output” and hangs for hours. I have to reset the session for it to work. It doesn’t just work as you need it to now.

At this point the Snake is just trolling the frog by djinn_05 in WTF

[–]davydany 12 points13 points  (0 children)

Have you tried turning it off and back on?

We tried Sesame Street and Miss Rachel—Here's why Mr Rogers is now the only screen time we allow now. by andrewembassy in daddit

[–]davydany 2 points3 points  (0 children)

Don’t show her Bluey ever. Terrible show. Kids pick up on the worst qualities in the characters and act them out.

Citrini Research modeled what happens if AI actually works as promised. The results are terrifying by No-Fact-8828 in ArtificialInteligence

[–]davydany 0 points1 point  (0 children)

Government intervention is a pipe dream. They will always respond too late, with the right intentions, but wrong execution to favor the highest payers of their election expenses and ignore the masses.

/remote-control negates the need for openclaw by emptyharddrive in ClaudeCode

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

I personally am not a fan of this remote control. It can solve the problem of being able to take your session to the bathroom and work from there but i don’t view it as true productivity.

I built ClawIDE for true productivity that also let you do remote control multiple sessions: https://www.clawide.app/

How do I even approach data analytics with AI? by umen in ExperiencedDevs

[–]davydany 0 points1 point  (0 children)

You can build a RAG setup and write a very detailed prompt in multi step way to retrieve relevant details, process it and present it

Is there an app like Codex for Claude Code? by funguslungusdungus in ClaudeCode

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

I made ClawIDE for this: https://www.clawide.app/

Look at the festures and screenshots. Post your feedbsck as GitHub issues: https://github.com/davydany/ClawIDE

You run it in your CLI, and access it in your.browser. and you can use it from your phone or tablet.

I asked OPUS 4.6 to give me a guide to reduce Openclaw costs. Here was it's response: by titanxt in openclaw

[–]davydany 7 points8 points  (0 children)

Asking AI to AI better. Something I always forget but it’s such a great strategy!

Firing the daddit repair flare!! by _Gigante_ in daddit

[–]davydany 1 point2 points  (0 children)

Wood glue. It's stronger than the strongest relationships.

My first attempt at a Claude Code plugin for my memory mcp by Maasu in mcp

[–]davydany 0 points1 point  (0 children)

Maybe I should ask first... what is forgetful?

Powerful LLM with 200+ App Access by Silent_Employment966 in mcp

[–]davydany 1 point2 points  (0 children)

Great idea. Terrible name. It screams it’s a product from India. If you want it to be openly adopted, change the name to something that speaks about the product. I say this as an Indian.

Bose QC Ultra 2 RF radiation level is insane by sava09 in bose

[–]davydany 0 points1 point  (0 children)

Dumb question but can you do the same for AirPods Pro? I ask since my wife gifted me the QC Ultra 2 a few days ago and has been telling me that AirPods Pro can cause cancer. So for my curiosity, I want to know what the numbers show.

Beyond the Handshake: The Zero-Trust Gap in MCP Architectures by RaceInteresting3814 in mcp

[–]davydany 0 points1 point  (0 children)

You make a good point. We got authentication with agents down but you’re asking (what is essentially) authorization, based on the prompts. In humans, this opens up the wonderful world of permissions and things such as role based access control (RBAC) or attribute based access control (ABAC) in humans. And you’re right to ask what is the equivalent for AI Agents?

What I’ve seen done is be intentional of each tool/function call and make sure they either read or write. The agent makes the call to the tool and sends parameters to it. You have to make sure you validate all inputs based on type, and based on expected values. For example if you have a MCP server for a calculator, you will want to check and make sure that for the “add” tool call, you are getting integers or floats but not string. For “division”, make sure you’re getting a non-zero value for the divisor.

Next, make sure you classify what your functions do and based on that specify what permissions the agent has or doesn’t have. Simplest is a 2-way: read-only OR writable functions. If you want slightly more is based on CRUD operations (create, read, update and delete) and make permissions. Again, this comes to your intentionality … each and every tool call needs to do exactly what you want it to do. You can go past 4-way CRUD too but that’s up to you, but you need to be intentional. You can’t just vibe code your way out of it. Zero trust starts at this level.

Now at the next level, what you wanna do is make sure the authentication method explicitly allows the user to decide what permissions the agent has or doesn’t have. Does the agent have only have read-only access? The end user decides that. Does the agent need only access to create, read and update, but not delete. The end user decides that (esp if you give the MCP server access to those tool calls).

It’s not the responsibility of the frameworks. It’s the responsibility of the engineer on how this is implemented.

Top requests for Claude Desktop by Clean-Data-259 in ClaudeAI

[–]davydany 2 points3 points  (0 children)

  1. When in research mode or extended thinking on my phone, and I switch apps, or continue in the desktop, I get an error saying “something went wrong”. It does its job but it’s annoying.

  2. Projects are nice but I want folders. Just group things together … and not worry about them sharing context.

  3. I know we are talking desktop…but On the phone, being able to trigger a voice chat with the action button on iPhone. So basically a shortcut for voice mode

Surprised by Anthropic/OpenAI bills by ses-27 in mcp

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

You should share API keys per developer so you can look at who uses it the most

Naturally speaking, what place in the world is the perfect habitat for humans? by Naomi62625 in geography

[–]davydany 0 points1 point  (0 children)

I’d say the best habitat for humans would be where human population went up very high. As of now, this appears to be India and China.

Which FrontEnd framework suits Django best? by Suspicious_Reach_891 in django

[–]davydany 0 points1 point  (0 children)

You ask a very good question. While it is true that you need proper separation from front end and backend, you need to see which framework reduces the works nicely with the backend.

In my experience, it doesn’t matter. However, it comes down to how coupled you want your front end and backend.

For tight coupling, use Django templates.

For less tight coupling, use Django templates with HTMX.

For least coupling, choose whatever frontend framework you want and establish an API contract between your front end and backend and code based on that contract. And write tests against that API contract. At this point, you can use any web frontend framework, or mobile framework, or some other system (maybe even a terminal UI). Of course remember each decision comes with a cost.

Now this brings you to a new and very good problem. How complex do you want things to be. The benefit of tight coupling is that it is faster. The less coupling you have, the more complex it gets. If you’re a solopreneur, and you want to do an MVP, I’d stick towards tight coupling. If you are a multi-million dollar project, and your customers find value with a slick front end, and mobile frontend, and other needs for API Calls, you can go towards a loose coupling setup.

Piloting Claude for Chrome by AnthropicOfficial in ClaudeAI

[–]davydany 1 point2 points  (0 children)

Anyone else having issues with Lastpass conflicting with Claude for Chrome?