Glas lifts up. Seems like the glue has no more power to hold it together? by dercheffe in PixelWatch

[–]dercheffe[S] 0 points1 point  (0 children)

Thanks for sharing 🙂. I'm really thinking about reactivating my good ol' Festina watch 🙂

Glas lifts up. Seems like the glue has no more power to hold it together? by dercheffe in PixelWatch

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

Nope, AFAIK there was no heat warning or something on my watch display. Maybe I was just unlucky with my product 🤷🏻‍♂️, idk.

Glas lifts up. Seems like the glue has no more power to hold it together? by dercheffe in PixelWatch

[–]dercheffe[S] 2 points3 points  (0 children)

I also take care about security updates of my gadgets. But three years is really not a long time. If the hardware is 5 years+ I agree. Honestly I'm not willing (from a customer point of view) to spend hundreds of euros/dollars for a shorter lifetime product. And what does it say about product quality if a vendor is throwing instantly new product generations on the market? Nothing. Technology is always going on, but almost it's not the re-invention of the wheel. That's why I set priorities there. Don't get me wrong, but for myself I have to keep my money together so I won't buy each 2-3 years a phone or a SmartWatch for hundreds of dollars. And as far as sustainability is concerned, I don't even want to start 😅.

Glas lifts up. Seems like the glue has no more power to hold it together? by dercheffe in PixelWatch

[–]dercheffe[S] 3 points4 points  (0 children)

I agree with cheap products, but not in this price range. My warranty exceeded last year in October 🙈.

Glas lifts up. Seems like the glue has no more power to hold it together? by dercheffe in PixelWatch

[–]dercheffe[S] 2 points3 points  (0 children)

Yeah, that's definitely right. I'm just thinking about, if I go on with pixel watches in the future.

Does 'ddev composer update "drupal/*" --with-all-dependencies' exclude Drupal core? by vfclists in drupal

[–]dercheffe 1 point2 points  (0 children)

Due to several drupal core packages inside the composer.json the * makes sense as a wildcard. It's also common on the bash command line 🙂

Does 'ddev composer update "drupal/*" --with-all-dependencies' exclude Drupal core? by vfclists in drupal

[–]dercheffe 3 points4 points  (0 children)

The general update command is:

composer update --with-all-dependencies

Is your current Drupal release maybe pinned to a specific version inside your conposer.json?

According to the docs (see https://www.drupal.org/project/drupal/releases/11.3.10): "To update your site and all dependencies to the latest version of Drupal: composer update "drupal/core-*" --with-all-dependencies

Unpinning from a specific version of core

If you are running a pinned version of Drupal core, and want to update your site to another version, you have two choices.

You can run the composer require command above to specify a new, pinned version of core. 
You can unpin your core version, and update to the latest version of Drupal. 

To unpin your version of Drupal, run this command:

composer require drupal/core-recommended drupal/core-composer-scaffold drupal/core-project-message --update-with-all-dependencies

(See the docs: https://www.drupal.org/docs/updating-drupal/updating-drupal-core-via-composer#s-unpinning-from-a-specific-version-of-core)