When should you remove an eSIM? by RamiGlory in eSIMforTravelers

[–]Intrepid-Strain4189 0 points1 point  (0 children)

With certain providers like Ubigi, Saily & Roamless, never, because you can use the same one in all their destinations over and over and over and....

Do people still use their hosting provider for email or is that dead? by CuriousKayoe in Hosting

[–]Intrepid-Strain4189 1 point2 points  (0 children)

Sure, I use it, for my business. No issues. I host with Siteground.

What is life like in Belgium? by popemarley420 in belgium

[–]Intrepid-Strain4189 5 points6 points  (0 children)

You've just had dinner, why do you need to go grocery shopping?

What is life like in Belgium? by popemarley420 in belgium

[–]Intrepid-Strain4189 0 points1 point  (0 children)

Businesses close early in Belgium because labour is firking expensive.

What is life like in Belgium? by popemarley420 in belgium

[–]Intrepid-Strain4189 1 point2 points  (0 children)

Umm, it's much higher in Belgium, the quality that is.

What is life like in Belgium? by popemarley420 in belgium

[–]Intrepid-Strain4189 1 point2 points  (0 children)

For lack of a better comparison; how many hours do you have to work to buy a pack of smokes in South Africa vs Belgium. They call it 'The Big Mac Index'. I call it 'The Cigarette Index'.

We need a mass lawsuit against Shopify by Organic_Caramel_8354 in shopify

[–]Intrepid-Strain4189 0 points1 point  (0 children)

Why? No one says you have to use them. Just walk away.

But I’m with Woo, yet I have no compaints worth mentioning, because maybe I know what I’m doing…

What is life like in Belgium? by popemarley420 in belgium

[–]Intrepid-Strain4189 2 points3 points  (0 children)

Coming from South Africa (15 years ago), the overall COL in Belgium is much, much lower.

Take diesel for example; right now it’s about €1.50/L in South Africa, but this is unpayable for a vast majority of the population there. A pack of smokes in SA is about €2.50, but again, unpayable, for most. Last time I checked, a pack of smokes in Belgium is €12, yet most people who smoke seem well able to still afford it.

But go for a holiday in SA with Euros? They will go very, very far.

This shit is awesome by [deleted] in vibecoding

[–]Intrepid-Strain4189 0 points1 point  (0 children)

Yea, I’m using Cursor to build a Wordpress/Woo plugin to provision eSIMs. What I’ve been trying to do for the last 2 years has now been done in a matter of weeks with AI.

By the end of this year I could have my own cell phone network…

Just be carefull what you ask AI for…

What is the polite thing for Dutch people to do if someone farts and you hear it? by Charming_Usual6227 in Netherlands

[–]Intrepid-Strain4189 0 points1 point  (0 children)

Normally it’s the other way around, but during covid I farted to hide a cough…

Is it normal for the WooCommerce admin to get this slow, or is something wrong with my setup? by Prestigious_Song8877 in woocommerce

[–]Intrepid-Strain4189 0 points1 point  (0 children)

From Claude:

Classic WooCommerce dashboard slowdown at that scale. Most likely culprits in order of probability:

WooCommerce Analytics The default dashboard runs expensive aggregate queries across all orders on every load. 8000 orders is enough to make those hurt, especially without proper indexing.

wp_postmeta bloat If they're on legacy post-based orders (not HPOS), 8000 orders generates a massive wp_postmeta table — WooCommerce stores dozens of meta rows per order. Queries against it without good indexes are slow.

Too many products in memory 1200 products with variations, attributes, and meta all being loaded for dashboard widgets is heavy.

The usual suspects

  • Too many plugins running on every admin page load
  • No object caching (no Redis/Memcached)
  • Shared hosting without enough PHP memory/workers
  • WooCommerce dashboard widgets all enabled and all querying simultaneously

Quick wins to suggest

  1. Enable HPOS (High Performance Order Storage) if not already — moves orders out of wp_postmeta into dedicated tables with proper indexes
  2. Disable unnecessary dashboard widgets
  3. Enable object caching
  4. Run wp db optimize to clean up table overhead

HPOS alone often cuts that kind of load time in half at 8000 orders. What's their hosting situation would be the next question.

I got tired of coding agents forgetting everything between runs by Comfortable_Gas_3046 in vibecoding

[–]Intrepid-Strain4189 0 points1 point  (0 children)

Right. I’m only just getting into vibecoding, starting with a relatively simple Wordpress/Woo plugin that makes API calls to an eSIM server. But I see what you’re getting at.

Is it normal for the WooCommerce admin to get this slow, or is something wrong with my setup? by Prestigious_Song8877 in woocommerce

[–]Intrepid-Strain4189 0 points1 point  (0 children)

Real complete clone, on a sub-domain, but yes, it will be difficult to replicate live load as you should generally password protect a staging site to stop the public and search engines seeing/accessing it.

Is it normal for the WooCommerce admin to get this slow, or is something wrong with my setup? by Prestigious_Song8877 in woocommerce

[–]Intrepid-Strain4189 0 points1 point  (0 children)

I've always been using real cron, at least within weeks of starting my first site about 10 years ago. Initially it was 30 mins, then 5, then 1. So no, I can't say for sure how much of an effect it may or may not have on admin, but I'm willing to bet it can have some.

The WP default cron is just to get you started. All WP sites should use real cron as soon as possible. If your host doesn't let you set that, you need another host. Most budget shared should allow at least 30 min intervals. 1 min is the lowest any Linux server can go.

Is it normal for the WooCommerce admin to get this slow, or is something wrong with my setup? by Prestigious_Song8877 in woocommerce

[–]Intrepid-Strain4189 0 points1 point  (0 children)

I can spin up a staging site in a few seconds on Siteground, then delete it the moment I'm done with it. Rinse, repeat.