International calling country codes

Today I needed a list of calling country codes identified by their ISO 3166-1 alpha-2 code. You can find some lists with the country name but not the ISO code, so I made mi own list based on the information available in the PhoneNumberMetaData.xml from Google's libphonenumber library.

International calling country codes

Enjoy!

Unable to load the SpatiaLite library extension "libspatialite.so.7"

Working with Django and Spatialite? If you updated recently to the last ubuntu version (15.10) and you're getting this error or similar:
Unable to load the SpatiaLite library extension "libspatialite.so.7" because: /usr/lib/x86_64-linux-gnu/libspatialite.so.7: undefined symbol: sqlite3_spatialite_init
You can fix it adding this line to your settings.py file:
SPATIALITE_LIBRARY_PATH = 'mod_spatialite' 
... and installing the package libsqlite3-mod-spatialte
sudo apt-get install libsqlite3-mod-spatialite 

Inspiration by https://lists.debian.org/debian-gis/2015/09/msg00000.html