Previously I explained you how to implement full text search in Django and trigrams-and-search-rank using Postgres. Solr …
A git submodule is a record within a git repository that points to a commit in an external repository. They are handled …
What is codewars? Codewars is a social network of programmers who get together to challenge each other to solve code …
How do I design a REST API? How many levels should I nest my related resources? Relative or full URLs? This post is a …
This publication is a minimal guide of practical tips on REST API design, I don’t go too deep into the theory. On …
Grouping by categories is quite common in web applications, from movies, courses or any other resource that presents a …
Debounce and throttle are design patterns used to limit the execution of functions, generally they are used to restrict …
In this post I explain three methods to extend or customize Django’s User model, without having to rewrite it from …
The select_related and prefetch_related methods are used to reduce the number of queries made to the database. This …
When we use Typescript with React and we want to pass a children as prop to one of our components , we need to indicate …