Our Blog

Boost your knowledge with the insights from our expert team.

API
API
Close
Business
Business
Close
Web
Web
Close
Talk
Talk
Close
Python
Python
Close
Design
Design
Close
People
People
Close
Open Source
Open Source
Close
Javascript
Javascript
Close
placeholder background

Taming Irreversibility with Feature Flags (in Python)

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.

placeholder background

Dealing with resource-consuming tasks on Celery

Let's go through two of the problems that may happen if we don’t take care of our routes: delay and resource starvation.

placeholder background

Multitenancy: juggling customer data in Django

Read more about multi tenancy and data manipulation using Django and AWS.

placeholder background

How to make sure your Celery Beat Tasks are working

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.

placeholder background

Advanced Django querying: sorting events by date

Imagine the situation where our application has events (scheduled tasks, appointments, python conferences across the world) happening in different moments of time. Almost anything with a date attached to it.

placeholder background

Contributing to Django Framework is easier than you think

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.

placeholder background

Don't forget the stamps: testing email content in Django

When developing a web app how often do you check the emails you send are all working properly? Not as often as your web pages, right?

placeholder background

Metaprogramming and Django - Using Decorators

While programming is about, in some way, doing code to transform data, metaprogramming can be seen as the task of doing code to change code. This category is often used to help programmers to enhance the readability and maintainability of the code.

placeholder background

Database concurrency in Django the right way

When developing applications that have specific needs for running asynchronous tasks outside the web application, it is common to adopt a task queue such as Celery. This allows, for example, for the server to start an asynchronous task for heavyweight processing, and then return an answer.

placeholder background

Functional programming in Python: a little bit more

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.