Overview for 'jenssegers'
Written by jenssegers.be
/ Original link
on Jun. 16, 2019
Yesterday I ran across an interesting tool for Docker called Watchtower. It runs in the background and monitors your running Docker containers for images updates. If a new image is found, it pulls it and restarts the container with the exact same configuration as it was started. Optionally it can…
Written by jenssegers.be
/ Original link
on Jun. 15, 2019
So you've been working on this new amazing feature for a while now. You're ready to click the merge button and deploy to production, but your product owner is holding you back because there are still some minor design tweaks or not everything was translated yet. Your branch is getting outdated beca…
Written by jenssegers.be
/ Original link
on Jun. 15, 2019
Yesterday I ran across an interesting tool for Docker called Watchtower. It runs in the background and monitors your running Docker containers for images updates. If a new image is found, it pulls it and restarts the container with the exact same configuration as it was started. Optionally it can…
Written by jenssegers.be
/ Original link
on Jun. 15, 2019
So you've been working on this new amazing feature for a while now. You're ready to click the merge button and deploy to production, but your product owner is holding you back because there are still some minor design tweaks or not everything was translated yet. Your branch is getting outdated beca…
Written by jenssegers.be
/ Original link
on Sep. 22, 2017
A lot has changed in the PHP landscape over the past years. We started using more design patterns and things like the DRY and SOLID principles. But not a lot has changed for Controllers right? If you have worked on large applications before, you might have noticed that you end up with bloated contr…
Written by jenssegers.be
/ Original link
on Nov. 17, 2017
After Mandrill changed their pricing model, I (as well as many others) started exploring different transactional email services. Laravel only supports a couple providers out of the box, but what about the others? All Laravel mail drivers are managed by a core TransportManager, but it was a pain in…