Still SSHing to run Docker commands?
Docker contexts = manage containers remotely from your local machine
✅Skip manual SSH entirely
✅Use Docker commands like you're used to
✅Remote feels just like local
Master your tools and self-host with ease
Aggregate are designed by knowing invariant between entities. If there is no invariant rule between two entities, then they are not part of the same aggregate. #DDD#aggregate
Pour le rôle/le job de Senior Technical Program Manager actuellement ouvert chez #BackMarket voici le lien : https://t.co/N8zgiRk1uM
#BackMarket#TPM#Paris#Job
CSS Tip! 📜
You can create scroll-driven micro-interactions with animation-timeline and custom properties 🔥
.search {
animation: shrink;
animation-timeline: scroll();
animation-range: 0 calc(var(--header-height) * 0.5);
}
@keyframes shrink {
to { width: calc(100% - var(--button-size); }
}
The --header-height is being used to dictate the container height for the header. You can use that for the animation-range used across different scroll animations 🤙
For another example, you can animate the box-shadow reveal on the header once the search has stuck 🍡
header {
animation: shadow;
animation-timeline: scroll();
animation-range:
var(--header-height)
calc(var(--header-height) * 1.5);
}
@keyframes shadow {
to { box-shadow: 0 5px 10px hsl(0 0% 0%); }
}
Then you have the little extras! 🧸🎈
Everything powered by the scroll() animation-timeline which hooks into the page scroll. And then using the --header-height in the different animation-range ✨
Give it a try! ⭐️
@CodePen link below! 👇