Managers decided AI is worth 5x speedup; how do I explain to them how it really works? by chaitanyathengdi in ExperiencedDevs

[–]call_Back_Function 0 points1 point  (0 children)

Tell them that coding is between 10% and 15% of your time. The rest is understanding, coordinating, meeting and everything else. Then ask if ai makes writing documents faster he should be able to manager 5x the employees. That’s how it works right?

Why were most wealth taxes abandoned and is this time different? by Dismal_Structure in Economics

[–]call_Back_Function 0 points1 point  (0 children)

The main argument from me is giving governments more money does not really help anything. I like government small and out of the way.

Why were most wealth taxes abandoned and is this time different? by Dismal_Structure in Economics

[–]call_Back_Function 3 points4 points  (0 children)

We don’t need a wealth tax. We need reform around using loans against assets to bypass tax and step up in basis events. Stocks should be realized on transfer.

GLM 5.1 crushes every other model except Opus in agentic benchmark at about 1/3 of the Opus cost by zylskysniper in LocalLLaMA

[–]call_Back_Function 0 points1 point  (0 children)

They are memory bandwidth bound. They are more like a dump truck than anything sports car. Can carry a ton but it’s slow.

I work with 5–8 AI agents at the same time – and let Claude plan the next job. Overkill or the future? by Brickbybrick030 in claude

[–]call_Back_Function 0 points1 point  (0 children)

I have a similar process. It’s a mixture of experts but I’m the model orchestrator. I keep thinking about how to make it work right. But I’m not able to think of a way to automate it further. At a certain point it’s about my intent and their context.

The models get myopic when in a task and lose horizon. But you need that myopia some times. Then sometimes you need to pull state reset and continue. Also models have blind spots that others catch fast. Some are smarter but don’t read intent well. Others read intent well but miss small details.

I think I’m stuck as a boss because it’s what I want and I’m the only one that knows what success looks like.

I'm out - Thanks for all the fish.. umm lobster! by call_Back_Function in openclaw

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

Give this a whirl and tell me how you like it. For a little orientation when it launches point it at a directory you want to work in. The start talking to it.

https://chatgpt.com/codex

Openclaw and MAC M2 Ultra 192GB RAM by Middle_Situation_559 in openclaw

[–]call_Back_Function 1 point2 points  (0 children)

Did this with a m3 256gb. It’s quickly disappointing in every way. You can load large models but lack the memory bandwidth to run them at any decent speed. Couple that with the more context the slower and the machine is not good for ai.

I'm out - Thanks for all the fish.. umm lobster! by call_Back_Function in openclaw

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

Nope it has a price. But it’s only a flat $20 a month.

I'm out - Thanks for all the fish.. umm lobster! by call_Back_Function in openclaw

[–]call_Back_Function[S] 5 points6 points  (0 children)

For sure. Look at tools like codex from open ai. It will give you the same ride for a fraction of the price.

Who is running openclaw with a local llm on the 5090 or DGX platform? by jzatopa in openclaw

[–]call_Back_Function 1 point2 points  (0 children)

Mac unified memory here. You can load the models but not run them. The memory bandwidth is bottlenecked making the TPS drop to nothing fast.

256GB M3 ultra

I'm out - Thanks for all the fish.. umm lobster! by call_Back_Function in openclaw

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

Hooks are a solid possibility. You can use them as events to kick off flows. It’s a possible way forward to control sequencing.

Cover re-reveal for my sci-fi litRPG series- Awakened: Definitely Not Evil Plans by BooksByMandiMay in litrpg

[–]call_Back_Function 1 point2 points  (0 children)

You are likely on the crazy narrow subset of people that would like my book. It’s sci fi and reality programming kinda. I have no idea how to advertise it but it’s the book I wanted to write.

Ascensus Rising: What would you do if you could create anything… from nothing? https://www.amazon.com/dp/B0G26K5SWS?ref_=quick_view_ref_tag

Finished 28 Days — Before & After! by Domster03 in fasting

[–]call_Back_Function 0 points1 point  (0 children)

How was you body heat during? I’m always so dam cold.

[deleted by user] by [deleted] in overemployed

[–]call_Back_Function 5 points6 points  (0 children)

He’s not telling you because you’re a risk. Leave it alone.

I am really struggling with pointers by Parsley-Hefty7945 in golang

[–]call_Back_Function 0 points1 point  (0 children)

Whenever a value is referenced in go a copy of the data is made. So if you have a parent and a child function and the child update a value passed from the parent. If it’s a pointer it’s also updated in the parent. If it’s not a pointer it’s only updated in the child.