Skip to content

Instantly share code, notes, and snippets.

We can make this file beautiful and searchable if this error is corrected: It looks like row 10 should actually have 5 columns, instead of 2. in line 9.
ID Titolo Anno Amministrazione Scheda applicazione
1 INAIL - DoCS 2004 INAIL inail_docs_gestione_patrimonio_applicativo.pdf
3 INPS - Automatizzare il ciclo di vita della posta in uscita, eliminando la carta. 2005 INPS inps_posta_ibrida.pdf
4 Giustizia - Sistema Informativo Integrato per il Controllo di Gestione 2005 Min. Giustizia giustizia_controllo_di_gestione.pdf
5 DigitPA - Gestione Incarichi di Collaborazione Online 2005 DigitPA digitpa-candidati_e_incarichi_di_collaborazione.pdf
6 SSPA - Sistema Orchestra - Strumenti di supporto alle decisioni del Dirigente Pubblico 2005 Scuola Superiore della PA sspa_orchestra.pdf
7 CNR SIGLA 2005 CNR cnr_sigla.pdf
8 MEF - Gestione giuridico-amministrativa del personale appartenente alle amministrazioni pubbliche 2005 Min. Economia e Finanze mef_siap.pdf
9 MIUR - Applicazione per accertare consistenza, situazione e funzionalita' patrimonio edilizio scolastico 2005 Min. Istruzione, Universita' e Ricerca miur_anagrafe_edilizia_scolastica.pdf
10 INPS - Gestione raccolta,
@sabas
sabas / botteghestoriche.geojson
Last active December 24, 2016 16:56
Le 41 botteghe storiche di Genova
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sabas
sabas / bulkReopen.sh
Created September 15, 2016 19:27
Reopen closed notes
IDNOTA=( 10 20 30 )
TESTO="Riapro%Nota"
USERNAME='pippo'
PASSWORD='password'
for i in "${IDNOTA[@]}" do
curl http://api.openstreetmap.org/api/0.6/notes/$IDNOTA/reopen?text=$TESTO --user $USERNAME:$PASSWORD
done
@sabas
sabas / terminal.geojson
Created January 3, 2014 17:17
Operatori Portuali del Porto di Genova
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sabas
sabas / JunctionPoints.geojson
Last active December 28, 2015 03:09
Junction Points from Pub151bk, fixed with geojson.io
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sabas
sabas / PortAuthorities.geojson
Created September 18, 2013 14:39
Autorità portuali italiane circoscrizioni ed aspo Fonte: http://www.assoporti.it/
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sabas
sabas / thumb.sh
Created December 13, 2014 16:09
Resize photos (found online)
#!/bin/bash
for file in ./*
do
# next line checks the mime-type of the file
IMAGE_TYPE=`file --mime-type -b "$file" | awk -F'/' '{print $1}'`
if [ "x$IMAGE_TYPE" == "ximage" ]; then
WIDTH=`imageinfo --width "$file"` # obtaining the image width
HEIGHT=`imageinfo --height "$file"` # obtaining the image height