Posts
Fatalement
Cancel

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...

Poetry instead of Pipenv?

One month ago I wrote about Pipenv because I appreciate how it is easy to set up a virtual env and because I have to use at work. Today, I have discovered Poetry, and decide to play a bit with Fi...