Como dev e como manager, já tive essa conversa sobre gerenciamento de tempo e priorização algumas vezes, então decidi documentar ~para economizar tempo~. Meu foco aqui são os líderes técnicos, mas usem como quiserem, tem ideias genéricas que podem ser aplicadas em outros contextos. Advice Monster
Django sessions works great since the begining, you can do a site with them and
never really understand how sessions works, but you can't scale to thousands of
simultaneous users writing all your sessions to database. The database can be a
huge bottleneck here and you should remove all unnecessary …
I started contributing to Django core after a failure in our project.
I had to rename a model attribute without touching our database. The solution
was simple.
# Simple attribute to rename.author=models.ForeignKey('Author')# 1. Add db_column param.author=models.ForeignKey('Author',db_column='author')# 2. Change the attribute name …
Honeycomb is the observability tool we use everyday at Buser. They help us tracking application bottlenecks, slow database queries, slow requests, requests with too many queries and much more.
Their automatic instrumentation with beeline is a good start, but at some point we had to extend the default behaviour.
During last december, I attended to 24pullrequests.com, a project to engage people to make one pull request per day until Christmas.
After it, I want to know how much a simple gamification over a common task can improve the results. Yes, I always helped some projects with pull requests …