Boost your knowledge with the insights from our expert team.
O FrontJS é um encontro semestral para discutir tecnologias, frameworks e metodologias relacionadas ao desenvolvimento de aplicações front-end com JavaScript. Alguns do tópicos que abordamos são: React, Angular.js, Vue.js, Flux e Ember.
It's not about what technology you use. It's about what business opportunities these technologies can unlock. It's about to offer better customer service. About really listening to your customer, talking, reduce costs and so much more.
An overview on React testing, focusing on the concepts of mocks and how Jest makes it pretty easy to work with them.
Keeping the client's expectations realistic is every manager's responsibility. As new resources are added to the team, it's essential that the client is aware that more people don't mean shorter deadlines. Instead, it means that with time you'll have more parallel deliverables.
Discover how to master time series forecasting with Python using real-world techniques and tools.
Feature Flags are a simple technique to make features of your application quickly toggleable. The way it works is, every time we change some behavior in our software, a logical branch is created. This new behavior is only accessible if some specific configuration variable is set or, in certain cases, if the application context respects some rules.
Celery is a great tool to run asynchronous tasks. It handles situations where you don't want to lock web requests with time consuming operations or when you want things to happen after some time or even in specific date/time in the future.
For those who are starting to code and wish to make open source, sometimes it is hard to start. The idea of contributing with that fancy and wonderful lib that you love can sound a little bit scary. Lucky for us many of those libs have room for whoever is willing to start.
The term "software multitenancy" refers to a software architecture in which a single instance of software runs on a server and serves multiple tenants.
This blog entry has two main goals. The first one is to help you understand what is function composition. In the second goal, we will deal with two of the best Python modules: operator and functools.
One of the best ways to learn something is by comparing it to things we already know. This blog post has two main goals. The first one is to introduce the basic concepts of functional programming, and for that we will compare with the main rival paradigm, the imperative programming.