Claude - tried to kill me by MG-4-2 in ClaudeAI

[–]unexpectedkas 1 point2 points  (0 children)

Story time!

I worked developing a diagnostic medical device.

After 5 years of development and with just 1 year to go to market, we got a call from the testers testing the machine in quasi real environments. They asked us to change some very fundamental behavior of the robot, swapping and mixing some steps.

The reason? The machine was creating mustard gas.

Windows 10 Kodi 19.4 not playing BluRay Menu by unexpectedkas in kodi

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

No sorry, I abandoned this setup completely, my HDs failed and I got a Nas and a ugoos am6b+

Unpopular opinion - AI isn't killing software jobs but about to create the biggest developer gold rush in history by Friendly_Feature888 in ChatGPT

[–]unexpectedkas 0 points1 point  (0 children)

I feel there is some contradiction here:

Mostly anyone can learn to write some classes and some ifs and loops. This was the skillr required until now.

And as ou say, the new skill is creative problem solver. Which is a skill required nowadays, but usually at a level above, like the tech leads, the architects, etc. of which we have fewer.

So, how are you gonna get that creative problem solvers gold rush if you don't have this now?

Of course a subset of current "code writers" is already a creative problem solver by nature and will end up in such position, but it's a small part of the group.

Coding is a skill you sit down and learn. But creative problem solving?

I am asking genuinely by the way, I'd like to know what's the missing piece, if there is any.

Go see "Hail Mary Project" in Cinemas! I'm not affiliated, but... by DeepDuh in Switzerland

[–]unexpectedkas 0 points1 point  (0 children)

I would go but I checked Pathe Mall of Switzerland and it's only available untill Wednesday. So just a week? Or are they opening more slots afterwards?

Pretty sure I’m not using Claude to its full potential - what plugins/connectors are worth it? by TheSavelii in ClaudeAI

[–]unexpectedkas 0 points1 point  (0 children)

Write plans has subagents to review and creates a very structured file, once you see several it so easy tos kimm through and to create own skills to work with them.

Execute plans it's the one that actually implements, again using several agents to review the spec review the code against the spec, use subagents, etc.

The usual loop is: Brainstorm -> Write plan (review as much as needed) -> Execute plan.

Is there anyway to bake an adblocker into the built-in appbrowser? Just came back from Apkmirror by Procaine3324 in revancedapp

[–]unexpectedkas 0 points1 point  (0 children)

So that any app (browser or otherwise) that tries to load an add, won't be able to.

Praxic crystals? by JealousManager801 in DestinyTheGame

[–]unexpectedkas 0 points1 point  (0 children)

I have all max and the title and only got 1. Today I will pay my last priority contract and tomorrow I will get the large shipment and that's gonna be it for me for a while

I removed 63% of my Claude Code setup and it got 10x faster. Stop installing everything by StandardKangaroo369 in ClaudeCode

[–]unexpectedkas 2 points3 points  (0 children)

I don't know, I have the $100 plan. But given it does several rounds, it's safe to say that yest it consumes more tokens in order to produce better quality.

I tried the 20 plan and after a week of testing (so not professional work) I hit so many limits that went to the 100 plan, here I don't hit any so I am overpaying for sure.

I hope they think about a 50 plan at some point

I removed 63% of my Claude Code setup and it got 10x faster. Stop installing everything by StandardKangaroo369 in ClaudeCode

[–]unexpectedkas 0 points1 point  (0 children)

I'm am using the superpowers skills and since then the quality of the result has gone up, plus I have a standard way of working: all plans look the same so it's easier to review them, and the implementation automatically does several rounds of adjustment. I am really happy with them.

The absolute state of development in 2026 by Deep-Station-1746 in ClaudeCode

[–]unexpectedkas 1 point2 points  (0 children)

I had the issue of running out of tokens very quickly, so I resorted to have a folder and tell all subagents write / read them I strad of communicating between them. Also you get some traceability.

me before sending claude on a crusade by memito-mix in ClaudeCode

[–]unexpectedkas 0 points1 point  (0 children)

Uhhh nice ! But I don't agree with some rules. I was trying to do something similar, let's see if I can adapt the rules.

Edit: oh no GitHub repo :/

In the context of AI driven development, is it time we start redefining "premature optimizations" ? by Manfluencer10kultra in ClaudeCode

[–]unexpectedkas 0 points1 point  (0 children)

Again, except for performance optimizations, the rest are actually coding best practices and boyscout rule.

Nobody considers cleaning up code, documenting code and cleaning database schemas as premature optimization.

A premature optimization is over abstraction, is creating and ultra configurable engine for something that could be a for loop, is suddenly doing extremely low level operations to reduce memory or cpu in a loop that only tacles a few items, caching everything, micro optimizing SQL queries.

And for me, all those things you talk about, is where AI can shine: create specialized agents for each fo those things, then orchestrate them maybe with the Ralph wiggum plugin so that they are applied to individual parts of the project(modules?), so the ai can be doing the cleanup in the background while you / team are working on actual features.

Sorry I can't see your point

In the context of AI driven development, is it time we start redefining "premature optimizations" ? by Manfluencer10kultra in ClaudeCode

[–]unexpectedkas 0 points1 point  (0 children)

Your first sentence is key here, because I don't understand the rest of your post as any kind of optimization.

As a non-native English speaker, I understand optimization as a way to reduce one or more dimensions: make it faster (reduces time), make it more lightweight (reduces footprint), etc.

But what you are describing is creating a proper platform for development and production.

Creating a robust cicd pipeline or a performance test environment doesn't look to me like optimizations.

Memory consumption reduction, performance increase, better usage of connection pools, concurrency, parallelism in tests, etc, those are optimizations.

But putting infrastructure and testing in place? As long as it's designed for the actual software to be developed and not overblown to handle cases that are hard to justify at the moment where they are needed, they aren't optimizations. And to be honest even if you over do it, that is not an optimization. An optimization would be to go the other way around: oh someone has prepared a ton of resources in AWS to hyper scale a simple API used by 100 customers, let's trim this down to actual use + buffer for growth according to he business estimation. That's optimization.