Posts
Fatalement
Cancel

Agile Tour 2019 Lausanne - Feedback

Yesterday I was at the Agile Lausanne tour. I will write to you what I have learnt yesterday. Conf 1: Is the tester dead in an Agile world? Laurent Bouhier the tester should be in charge of write...

Coding Club des filles

At the EPFL, there is a service dedicated to promoting the sciences to young people and large public. They also have a specific section dedicated to promoting computer sciences for young ladies. Th...

How to easily import data from CSV file in Django

I need to import a lot of data but I do not want to do that manually. How can I take a CSV file and import it in my Django table? I will show you how I use the django-import-export library to do t...

Git stash part 2

If you had by mistake pop a stash in a wrong branch and you now have conflicts, just do 1 2 3 git reset HEAD --hard git checkout my_correct_branch git stash pop

Json in command line

When I am debugging a part of a code which does not work, I print quite often some dictionary of a json object in my shell. Most of the time it happens in one line quite difficult to read, so I ope...