|
|
|
|
|
by bamboozled
311 days ago
|
|
I've done a lot of wood work and there is almost zero doubt in my mind it's a router.It's flexible, brilliant, time saving, repeatable (with templates) and you can do a lot of damage with it in a very short amount of time. I'd never call it a Hammer. With regards to the models I use. I'm pretty much using Claude Sonnet 4 with Claude Code and Gemini 2.5. In my opinion Sonnet 4 is the most superior model I've used yet, although I've not used GPT-5. Where some of my attitude comes from is even in the way you get used to using differnt models, like you really kind of get a grasp for how to prompt them and kind of know what to expect. That's where I don't see them so much as an intelligence, but an approximation engine. I feel that what many "coders" fail to realize is how extremely common the patterns they're employing to solve a problem are. The approximation engine can see that as numbers, match it and give you a similar eyt slightly modified (to your context) version of what you want. These models have been trained on probably hundreds of millions or billions of lines of code after all, yet there probably isn't all that much variation in what most code looks like. What you'll notice is that it's horrible at coding in anything it's not trained on. Recently I tried to use it with FastHTML, and it knows almost nothing about it, and the author of that project will even provide you with a context file you can give your "AI" to use so it can "understand" how to code with it. We also follow like common architectural patterns to get them most out of "AI". We've found that to be very helpful to reduce the amount of random and unhelpful code we get out of them. |
|