<select>burocrazia?</select>

September 24th, 2008

No, il titolo non e’ un errore di parsing, ma un modo di raccontarvi quello che ho appena scoperto oggi.

Qualche giorno fa ho litigato con la mia banca italiana per farmi spedire la posta qui a Londra. Nel menu <select> per scegliere la provincia di invio e’ obbligatorio inserire una provincia, nello specifico la provincia EE (estero). Il problema e’ che questa provincia inesistente viene stampata sull’indirizzo, creando problemi alle poste inglesi.

Ma vabbe’ alla fine ce l’ho fatta a ricevere la posta e ho deciso di arrendermi all’eventualita’ di non fargli sistemare la cosa.

Non poteva finire cosi’.

Oggi mi scrive FTatullo, un mio caro amico spesso in crisi burocratica. E mi racconta:

sono l’unico che vuole registrare un contratto per una stanza
ed è veramente stupido e complicato.
pensavo di fare la registrazione online
scarico il merdoso programma in 5 comodi moduli
compilo tutto
finchè non arrivo ai dati del conduttore (lui)
e mi chiede comune e provincia di nascita
il tipo qui è di liverpool
io posso solo scegliere da una lista di comuni e province italiane!!!
(e non posso lasciarlo in bianco ovviamente)

Memore dell’avventura precedente, mi si accende la lampadina.
Hai provato con la provincia EE?

Inutile continuare. La provincia EE c’era, in ordine alfabetico con le altre.

hai appena risposto ad una cosa
che la tipa del call center non ha saputo dirmi in DUE telefonate!!!
però cristo iddio, vuoi metterci un help? o almeno dirlo ai tuoi operatori???
ora che ho selezionato EE mi si è aperta la lista dei paesi …

Cosa impariamo oggi (come se c’era bisogno d’impararlo):

Burocrazia inutile + operatori ignoranti + software inusabile = Magie del Belpaese

Categories: Italia, Tech | Tags: , , , | 5 Comments

Is this new “Aging project” digital?

September 22nd, 2008

When I see stuff like Aging project I just wonder how diligent they were to manage to do it without a digital camera, at least in the first part of the 17-year-lasting project…

Categories: Tech | Tags: , | 1 Comment

Barak vs. Hillary

September 21st, 2008

Speravate in un bel pippone politico, eh?

E invece no, eccovi un buon esempio di data visualisation.

Categories: Tech | Tags: , , | 1 Comment

Sage to Google Reader OPML converter

September 18th, 2008

[WARNING: If you are not a nerd, please jump to the following post :-P ]

For some reason, when exporting rss feeds from Sage, a Firefox plugin, to an OPML file it does not save the feed (i.e. the xml/rss/atom/whatever) link, but the feeds themselves, i.e. the content of the feeds.

If you have the same problem, here’s a fast-and-dirty solution.

  1. export your Firefox bookmarks in HTML format, in a file called, say, bookmarks.html
  2. using a bash shell, extract the feed lines into a file called feeds.xml doing
    cat bookmarks.html | grep FEEDURL > feeds.xml
  3. create the following script called “scriptfeed.sh”
    #!/bin/bash
    echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>"
    echo "<opml version=\"1.0\">"
    echo "<head><title>RSS Subscriptions</title></head>"
    echo "<body>"
    while read line
    do
            temp=`echo $line | awk -F"<" {'print $3;'}`
            feed=`echo $temp | awk -F"\"" {'print $2;'}`
            url=`echo $temp | awk -F"\"" {'print $4;'}`
            text=`echo $temp | awk -F">" {'print $2;'}`
            echo "<outline text=\"$text\""
            echo "  title=\"$text\""
            echo "  type=\"rss\""
            echo "  xmlUrl=\"$feed\""
            echo "  htmlUrl=\"$url\"/>"
    done < feeds.xml
    echo "</body>"
    echo "</opml>"
  4. Give the script the right to execute
    chmod +x scriptfeed.sh
  5. Launch the script on the output file, say, exp.xml
    ./scriptfeed.sh > exp.xml

I know, it’s dirty and tricky, but it works :-P

Categories: Tech | Tags: , , , , , , | 1 Comment