On March 19, 2025 at 19:39

What are some high-end WordPress plugins priced at $500+/year? I came across Newsletter Glue at $1.4K/year for their Pro plan. Any others in that range?

On March 19, 2025 at 13:48

And I was wondering why the –webpack-devtool flag doesn't work… It is looking for two slashes in the code. All other –webpack-* flags have a single dash as separator so this must be a bug in the source.

On March 17, 2025 at 08:00

Responded to @mikrotik:

@mikrotik That would explain the behavior. I believe it is the opposite to other places where multiple items can be selected such firewall rules, for example. Would be nice to have this documented.

Is the use-case to limit the logs per component such as critical but for LTE, for example?

On March 15, 2025 at 16:43

Is anyone else seeing connectivity issues with wAP LTE devices running versions 7.18 of ? It appears to be loosing LTE connection and going into connected/disconnected loop.

On March 15, 2025 at 11:20

Would it be useful to have a post-meta inspector that worked without the legacy metaboxes? Like Post Meta Inspector or Metadata Viewer plugins but with Gutenberg UX?

On March 13, 2025 at 13:48

How should I price a WordPress plugin with 10k active installs on WP-org? The PRO version hasn’t launched yet, but the domain ranks well for relevant keywords. Any insights on valuation and pricing strategy?

On March 11, 2025 at 19:39

WordPress core needs a standard API for encrypting values in the database (such as options and post/term/user meta). This would allow storing API secrets without the risk of exposing them to anyone with DB read access.

On March 11, 2025 at 11:14

Here is a video overview of my latest email newsletter covering AI vector embeddings for WordPress in MySQL, Query Block ordering by custom menu order, focal point selector for all attachments, and native system fonts for block themes.

On March 6, 2025 at 18:00

Curious about AI embeddings 💘 and how they apply to WordPress? I’ve put together a guide that explains their role in powering regular search and retrieval-augmented generation (RAG) systems for even better search results or chat systems.

On March 6, 2025 at 14:48

Experimenting with storing embedding vectors as packed 32-bit floats in a MySQL VARBINARY column and handling distance calculations in PHP.

As expected, the real bottleneck is the math — especially with larger vectors. Also array_map() and array_sum() are super slow and unusable for this.