5 Biggest Agile User Story Mistakes

Posted on Wed 30 January 2019 in Teamwork • Tagged with agile, scrum, user storiesLeave a comment

Sometimes, teams feel that agile user stories are not worth the extra work. I think I know the reason why.

Continue reading

How corporate communications ruin your teamwork and a way to fix that

Posted on Sat 02 December 2017 in Teamwork • Tagged with teamwork, communications, growthLeave a comment

Our new executive had almost ruined our team spirit. Did we fire her? No, we fixed the root cause - our communication technology.

Continue reading

Preparing for a holiday season? Make sure your website conversion rate is *low* enough

Posted on Fri 13 October 2017 in Marketing • Tagged with conversion, sales, marketingLeave a comment

There’s no typo in the title. Our figures show that the lower website conversion rate you have during seasonal peaks, the better it is for your sales. In fact, by decreasing conversion, we managed to boost our sales. Read on to learn how that works.

Continue reading

Make personal growth books work for you: the “Ideas Depot” reading strategy

Posted on Wed 23 August 2017 in Productivity • Tagged with anki, productivity, books, self-development, personal growthLeave a comment

Reading personal growth and leadership books is always rewarding. Forgetting ideas soon without integrating them into your life - not so much. Read on to learn how to finally make books work for you with a simple 5-minute daily routine.

Continue reading

Django: how to create PDF, MS Word and Excel documents from templates

Posted on Mon 11 July 2016 in Programming • Tagged with django, python, libreoffice, pylokit, templates, documentsLeave a comment

If you’re building a Django system that implies serving some kind of documents like reports or bills, chances are you want to provide docs in various formats from PDF to MS Word to HTML. But how to implement this without resorting to numerous templates and packages for each document type?

Continue reading

Why you should use the Django admin: 9 tips

Posted on Wed 09 December 2015 in Programming • Tagged with django, python, adminLeave a comment

This writing is inspired by a comment on Reddit concerning my recent post:

The problem is that everyone I speak to seems to think the opposite - that the admin is super-limited, inflexible and hard to customize.”

andybak on Reddit

I’m about to break this prejudice right now. The Django admin is a really brilliant piece of software, which can significantly speed up your development.

Here are some tips about the Django admin, which I’ve found to be quite useful.

Continue reading

Managed search and replace in many files using Vim and ag.

Posted on Mon 16 November 2015 in Programming • Tagged with vim, agLeave a comment

Recently I faced an interesting problem. I had to search for the redundant lines of code (about a hundred occurences), and replace some of them. The bad thing is that I couldn’t do that automatically, as each case had to be manually reviewed.

So, how to automate this task, while keeping the manual control?

Continue reading

How to send Jabber (XMPP) messages from Django

Posted on Wed 11 November 2015 in Programming • Tagged with django, python, jabber, xmppLeave a comment

Did you ever want to have a simple Django notification bot? An intranet one which just sends you (or someone you tell it to) Jabber messages when certain events occur? So did I. Please, welcome: django-jabber.

Continue reading

Tip: How to get a single object`s value with Django ORM

Posted on Wed 11 November 2015 in Programming • Tagged with django, python, ormLeave a comment

There are times when you want to get a single field of a single object in the database. For example, just get the headline of the blog post #1, not fetching it’s body. How do you do it in a usual way?

'Hello world' # Or maybe even this way: >>> BlogPost.objects.values('headline').filter(pk=1)[0]['headline'] 'Hello world'

Recently I’ve stumbled upon a shorter one:

Continue reading

When you shouldn’t use the Django admin

Posted on Wed 11 November 2015 in Programming • Tagged with django, python, adminLeave a comment

In case you’ve thought I detest django.contrib.admin — by no means. Actually it’s one of the Django’s greatest features, I really love it. In most cases.

Here’s a real life story. We’ve had to quickly put up the first version of an intranet claim tracking system, and one of our developers was just crazy about the Django admin… So why not, we’ve got along with the stock interface as the primary one for …

Continue reading