Claude Code Quietly Taught Itself to Stop Waiting for You

Claude Code Quietly Taught Itself to Stop Waiting for You

TL;DR
  • Claude Code shipped AFK mode (away from keyboard) in v2.1.198, built July 1, 2026. It is not in the changelog and there is no release note.
  • An unanswered AskUserQuestion dialog now auto-answers after 60 seconds (with a 20-second on-screen countdown) and tells the model to proceed on its best judgment.
  • Two undocumented env vars control it: CLAUDE_AFK_TIMEOUT_MS and CLAUDE_AFK_COUNTDOWN_MS. Set the timeout to 2147483647 and it effectively never fires.
  • I found all of this by running strings over the local binary and bisecting four versions. Every command in this post is reproducible on your own machine.
  • The upside: unattended and remote sessions stop hanging forever. The catch: an away user hasn't agreed to anything, so the model can now proceed on a guess and act on it.
marcindudek.dev
u/Myth_Thrazz — 4 days ago

[PREMIUM] Your WordPress debug.log Can Quietly Eat the Whole Disk - WP Multitool doesn't let it

  • WordPress debug.log has no size cap, rotation, or dedup — it just grows forever
  • One noisy plugin repeating the same error every request = a multi-GB file
  • It fills the disk and can take the whole site down, silently
  • Once it's huge you can't even open it to diagnose (editor OOMs, "cat" kills a small VPS)
  • Usual fixes both lose: delete it (lose all history) or paste into AI (won't fit context)
  • Built a module that streams the log (no RAM blowup), groups duplicates into a counted table, and size-guards it without losing the errors you need
  • It's disk-safety + log hygiene, not a speed boost
wpmultitool.com
u/Myth_Thrazz — 14 days ago

Have you ever been annoyed/surprised by the size of the debug.log?

I'm supporting many client sites - both retainers and one-off optimizations. More often than not, while looking for the sources of the slowness I end up finding an enabled debug.log that takes 5G+ and is full of notices and deprecation messages.

So on one side it's good as this is the mine of useful information about website.

On the other side - sifting through the 5G of crap takes ages.

Do you have any good solutions to deal with that?

reddit.com
u/Myth_Thrazz — 14 days ago

The Best Free WooCommerce EU Withdrawal Button Plugin (2026)

From 19 June 2026, every shop selling to EU consumers has to put a clearly labelled, one-click "withdraw from contract" function in the storefront. That's Directive (EU) 2023/2673, which adds a new Article 11a to the old Consumer Rights Directive.

WooCommerce has no native support for it - there's just an open request (#65443) sitting there with no roadmap.

I've tested 11 plugins that do that and selected the best one ( in my opinion )

marcindudek.dev
u/Myth_Thrazz — 17 days ago

I took a challange to install as many "fast" plugins as possible on a single WP installation with 256M of RAM

Over the past few months I've benchmarked the performance of ALL 60k+ plugins from WordPress Plugins repository and graded them.

Turned out that most of them had negligible impact on performance. Then one of the commenters asked: "So, did you install all 50,106 top performing plugins and see what happens?"
(source: https://www.reddit.com/r/Wordpress/comments/1u00akj/comment/oqhot8e/ )

I turned it into a challange: "How many "fast" plugins can I really run on a single WP instance at the same time?"

So I spin a Docker environment locally, took the list and started installing...

Here's the full article:
https://makewpfast.com/how-many-plugins-can-wordpress-handle/

TL;DR: Even if the plugin is 'small' or 'fast' it DOES have a tiny footprint, and this compounds.
I stopped after installing 223 plugins (without touching the limit)

u/Myth_Thrazz — 20 days ago
▲ 44 r/WordpressPlugins+1 crossposts

Do Too Many Plugins Slow WordPress? I have benchmarked ALL of the 60k+ plugins to find out

TL;DR; It's WAY more about QUALITY than it is about QUANTITY.

makewpfast.com
u/Myth_Thrazz — 28 days ago

[PREMIUM] Your WordPress media library is hiding gigabytes you can't see

A major release of the WP Multitool (1.3.0) that massively improves the Image Optimizer module - adding the advanced detection of the unused images and thumbnails and allowing to remove them.

wpmultitool.com
u/Myth_Thrazz — 1 month ago

[Free] If the Classic Editor is the first plugin you install on every WP - I have something for you

WordPress still registers blocks even if you're not using them, and not only basic WP, WooCommerce too. And even if it doesn't take MUCH time - it still takes some time on every request.

So I've made a free plugin that just... removes them https://wordpress.org/plugins/zero-blocks-given/

reddit.com
u/Myth_Thrazz — 1 month ago
▲ 4 r/Startup_Ideas+1 crossposts

Builders x Marketing tinderlike service

In the X I'm in the 'bubble' with other tech/builders and we all hate doing marketing - I came with an idea that would pair builders with marketers in Tinder-like style.

What do you think? Are there any marketers here that would be interested in something like this?

reddit.com
u/Myth_Thrazz — 2 months ago
▲ 5 r/ProWordPress+1 crossposts

[PREMIUM] WordPress Plugin Auto-Update via Polar: 3 Bugs in 24 Hours

Post mortem cautionary tale about how I built Auto Updater for my plugin on top of Polar licensing system, and what went bad with that.

ps. Marking as [PREMIUM] as it's about a paid plugin, but the post is educational.

marcindudek.dev
u/Myth_Thrazz — 2 months ago

I got 60 customers in 5 months ($5,5k revenue) for a WordPress performance plugin - but not sure how to scale it

The plugin is called WP Multitool - its a modular WordPress optimization plugin with 14 independent modules for performance and control - aimed for WordPress power users (agencies, devs)

I've tried:
- SEO
- Reddit
- LinkedIn
- X
- Cold email ( crawling the internet to get the list of agencies turned out to be harder than I thought)

Plugin is very good - people are buying it for $199/year and $499 lifetime and I haven't heard anyone yet who wouldn't like it.

It saves a lot of time when debugging server-side performance issues.

It is NOT another CACHING plugin.

--

TL;DR: - I'm an engineer, not marketer - I know I have a good product, but I don't know how to reach customers

reddit.com
u/Myth_Thrazz — 2 months ago

In the latest version of WP Multitool I've added one new module (14th) - for managing and debugging Action Scheduler ( the system that's responsible for background operations of many plugins - but mainly WooCommerce )

I've made it because I found out that the default settings (which are hardcoded ) are not working for bigger shops ( 1000+ products )

Also - for some unknown reason - Action Scheduler leaves all of the failed/completed tasks in the database for a very long time, inflating it unnecessarily.

--

Image optimization tweak helps site owners find duplicate image sizes - so for example if WordPress and WooCommerce both register a 300x300px size - one of them can be easily disabled - plugin detects that.

You can read the full blog covering new functionality here:

https://wpmultitool.com/blog/wp-multitool-1-1-20-action-scheduler-image-analysis/

u/Myth_Thrazz — 2 months ago

And as usually in life the answer is...>!it depends. !<

TL;DR:

>!If you want a single winner, it's not here - because honest analysis doesn't produce one. The question isn't "which is better" but "what are you building, and what failure mode can you live with."!<

u/Myth_Thrazz — 2 months ago

Over weekend I got an idea of a potential very fast WordPress + WooCommerce stack. Yesterday I've started to work on it and today I've finished. The results blew my mind.

WooCommerce can become really, really fast... <5ms loading time (locally)

marcindudek.dev
u/Myth_Thrazz — 2 months ago

Play in your browser, no install. Up to 8 players, turn-based. You get a random role at the start - King, Peasant,Knight, Thief, Assassin, Vampire, Werewolf, or Dragonkin. Each one plays completely differently. The King sets taxes and tries not to get overthrown. The Peasant works, tries to survive. The Thief robs people.

Everyone tries to get rid of the dragon before the dragon gets rid of the whole kindgdom.

u/Myth_Thrazz — 2 months ago