Airline* | Rate | Passengers† |
---|---|---|
Air Canada | 2.73 | 130,132,000 |
WestJet | 1.50 | 59,537,000 |
American Airlines | 1.19 | 389,668,313 |
Aeroflot | 1.02 | 48,090,000 |
Swiss | 0.83 | 57,630,000 |
Lufthansa | 0.68 | 302,717,000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/env python | |
# -*- coding: utf8 -*- | |
# notable-absences.py - Prints a list of featured articles in the English | |
# Wikipedia which are not present in the provided | |
# Wikipedia language, sorted by the number of | |
# interlanguage links of the article. That is, notable | |
# articles present in many Wikipedias, but not on the | |
# provided one. | |
# | |
# Copyright (C) 2012 Gabriel Rodríguez Alberich <[email protected]> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
[ | |
"abajar", | |
"bajar" | |
], | |
[ | |
"abalaustrado", | |
"balaustrado" | |
], | |
[ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf8 -*- | |
import re | |
import json | |
from lxml import html | |
try: | |
from urllib2 import urlopen | |
except ImportError: | |
from urllib import urlopen | |
PAPELES_URL = "http://elpais.com/especiales/2013/caso_barcenas/" \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"forma": "Efectivo", | |
"debe_unidad": "(\u00bf?)", | |
"debe": 8.0, | |
"concepto": "Saldo inicial (entrega R. N.)", | |
"haber": null, | |
"anyo": 1990, | |
"saldo": 8.0, | |
"saldo_unidad": "(\u00bf?)", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# directories to be included, space separated | |
SOURCE="/home/chewie /etc" | |
# directories to be excluded, space separated | |
IGNORE="/home/chewie/Downloads /home/chewie/Steam" | |
DRIVE_FOLDER="duplicity-backup" | |
LOGFILE=/home/chewie/duplicity.log | |
# set email to receive a backup report | |
EMAIL="" |
NewerOlder