Articles

Plumage 0.7Ā released

I just released version 0.7 of my Plumage theme forĀ Pelican. This one come with a big new feature thanks to Renato Cunha, who made a huge contribution by integrating Tipue Search, providing fully static search over all content of a PelicanĀ site. Some tiny adjustments were also made ā€¦
āžŸ Read more

maildir-deduplicate 1.0.2Ā released

The v1.0.2 release of maildir-deduplicate has just beenĀ released! This is the first announcement on my blog of the v1.0.x series, which has been heavily rewritten during the last past months. The project is now properly packaged and distributed, and the code is now more idiomatic ā€¦
āžŸ Read more


How to solve SSL errors on pipĀ install

Was trying to install alembic in a virtualenv with pip , on an OS X El CapitanĀ machine: $ pip install alembic Collecting alembic (...) Ended up with the followingĀ traceback: Traceback (most recent call last): File "/Users/kev/venvs/test/lib/python2.7/site-packages/pip/basecommand.py", line 211, in main status ā€¦
āžŸ Read more

PandasĀ snippets

Import Numpy andĀ Pandas: >>> import numpy as np >>> import pandas as pd Create a 5 rows and 3 columns frame with random integers between 0 andĀ 99: >>> df = pd.DataFrame(np.random.randint(100, size=(5, 3))) >>> df 0 1 2 0 35 66 14 1 30 3 13 2 ā€¦
āžŸ Read more