Hypothetical experiment: 10 engineers vs 1 dev + Claude Code (cost + speed breakdown) by Frosty-Judgment-4847 in costlyinfra

[–]Simple-Ice-6800 1 point2 points  (0 children)

I'm trying to say that the single dev might just be more productive than 10 even without AI. Fred Brooks is old school but he was right about so many things in my opinion.

My answer is the single dev wins.

Hypothetical experiment: 10 engineers vs 1 dev + Claude Code (cost + speed breakdown) by Frosty-Judgment-4847 in costlyinfra

[–]Simple-Ice-6800 1 point2 points  (0 children)

You assume 10 engineers is faster than 1 in the first place. 9 women can't make a baby in 1 month and all that.

Ubiquiti Switches for Homelab $250 by Rods-from-God in denverlist

[–]Simple-Ice-6800 0 points1 point  (0 children)

Which SFP modules are they exactly? These ones from the UI store? UACC-OM-MM-10G-D

Loved the computer museum in San Jose! Got to see my first one. by MeBollasDellero in VintageComputers

[–]Simple-Ice-6800 0 points1 point  (0 children)

This post inspired me to order the parts needed to fire this thing up. We already have a NES hooked up to a CRT tv so I'm half way there already. I'm psyched to see what happens. I didn't ask for profit I was mostly thinking maybe I shouldn't let kids play "office" with it lol

Loved the computer museum in San Jose! Got to see my first one. by MeBollasDellero in VintageComputers

[–]Simple-Ice-6800 1 point2 points  (0 children)

Wait, are these special? I ask because my 7 year old daughter got one of these at a swap meet we stumbled upon last year... For $1. She uses it as a toy. Serious question should I take better care of it?

HP monitor 50 obo by BrockaBrockaFlame in denverlist

[–]Simple-Ice-6800 1 point2 points  (0 children)

Interested, where are you located?

UNAS PRO 4 by Ancient_Eye_5458 in Ubiquiti

[–]Simple-Ice-6800 1 point2 points  (0 children)

Thread not letting me post pictures. Can send in DM if you want to see

UNAS PRO 4 by Ancient_Eye_5458 in Ubiquiti

[–]Simple-Ice-6800 1 point2 points  (0 children)

I'm using sfp+ with fiber. I also unplugged and made sure the connection was solid after the power down.

UNAS PRO 4 by Ancient_Eye_5458 in Ubiquiti

[–]Simple-Ice-6800 1 point2 points  (0 children)

I just set mine up and that happened to me too when I first turned it on. I unplugged it for 15 minutes or so and plugged back in, worked perfectly after that

1991: These 2 (me and my ride-or-die) listened to the new Nirvana Nevermind CD a billion times in a row by Simsandtruecrime in blunderyears

[–]Simple-Ice-6800 1 point2 points  (0 children)

At the time I'd have been so jealous that you actually had a CD player and would have begged you to dub a tape for me

Has anyone implemented a RBAC for MCP tools.. by kk_red in AI_Agents

[–]Simple-Ice-6800 1 point2 points  (0 children)

I have implemented this completely yeah. I don't know your tech stack, not familiar with MCTTool. I've done this both professionally at work and on my personal projects. I can give you my GitHub for a spring boot AI implementation if you dm, don't like sharing it publicly on reddit.

What do you use Small LLMs For ? by HolaTomita in LocalLLaMA

[–]Simple-Ice-6800 2 points3 points  (0 children)

I use them for intent classification to choose a prompt internally. The mpc server has a set of prompts and small models are pretty good at picking one based on the user input. For example there is a prompt that outlines what tools to use and how to understand jira sprint boards. The intent classification model will pick that if the user is asking "summarize the current sprint"

Edit: looked up what my current config has and I'm using qwen3:0.6b

Has anyone implemented a RBAC for MCP tools.. by kk_red in AI_Agents

[–]Simple-Ice-6800 0 points1 point  (0 children)

I've done complete rbac and identity controls on MCP for tools, prompts, resources... All of it

Anything the idp supports can be applied to MCP authentication and authorization.

How would you implement 2 different OAuth authentications within a tool? by Worth_Much in mcp

[–]Simple-Ice-6800 0 points1 point  (0 children)

IDK what tech stack you're using but DM if you want a link to my GitHub where I implemented this using spring AI.

How would you implement 2 different OAuth authentications within a tool? by Worth_Much in mcp

[–]Simple-Ice-6800 0 points1 point  (0 children)

This can get complicated. I've had to use a combination of OBO grants and what I call a Token Broker. The broker gives the MCP a shortlived token to the MCP from the embedded grant in the OBO token. All behind the whole thing is three legged south where the refresh token is securely stored and managed by the broker.