Why using Kubernetes ?

Why using Kubernetes ?

What is Kubernetes ? Kubernetes is a tool for managing and deploying your containerized applications. The key word here is “containerized” if you didn’t reached this step in you applications you should start there and go Dockerize your applications. It will be a big...
Vue.js form validation

Vue.js form validation

Validation is a very common task in web applications. Indeed, data needs to be validated before submitting a form and before it is written into a database or passed to a web service. This article deals with form validation in Vue.js and especially three plugins that...
Docker container management

Docker container management

At theTribe we use docker to easily create development environments. It’s nice: you clone the project, launch docker-compose and you can start coding. But when you work on multiple projects at the same time it starts to become hard managing all your running...
Managing spreadsheets with Symfony

Managing spreadsheets with Symfony

Despite digital development, spreadsheets are still very popular to store and display data as text and numerals or in graphical form. Modern spreadsheets also provide built-in functions for common financial and statistical operations. Thus managing spreadsheets in a...
Making a simple payment with Stripe

Making a simple payment with Stripe

Stripe is a powerful payment service designed for developers, but it can be difficult to use for newcomers even if the documentation is really good. Let’s make an example for a simple payment with a credit card on a Symfony app. Prerequisites Be sure...