Thanks to dela, I just can’t refrain from shouting that once again! :)
Monthly Archive for February, 2007
The TPCI February Headline is
Programming Language D reaches Status A
My headline is
Ruby gained 10 places and 2%
With its 10th place it’s definitely the new boy in town!
I also noticed that there are just three languages in the top ten that gained scores and positions: they are Python, JavaScript and Ruby.
I don’t know why but the official Installing/Updating WordPress with Subversion page doesn’t mention an easier (and better?) way to do the same task:
svn co http://svn.automattic.com/wordpress/tags/2.1.1/ wordpress-2.1.1 # substitute 2.1.1 with the version number you need
svn export --force wordpress-2.1.1 wp_blog # wp_blog is a folder with your external and previous Wordpress version's files
Now run sitecopy to synchronize wp_blog with your remote site. That’s it.
Cari Compagni
(vecchi e nuovi, di coalizione e di partito, di nome e di fatto),
quanti di voi, oggi, avrebbero voluto aver appoggiato politicamente il ricorso della Rosa nel Pugno? Avreste avuto un trotzkista in meno al Senato e ancora un Governo!
Bevete dunque il calice della vostra stupida volgarità.
He is the man_of_the_day because I unexpectedly met him close to his old home almost twenty years after he had gone away.
I tried:
I’ve just chosen Byzanz: in my opinion it’s the closest one to the KISS principle and creating animated GIFs makes its output usable even on outdated OSes.
Di solito evito di raccontare qualche triste episodio relativo alla sedicente laicità dell’Italia (anche perché gli amici dello UAAR di norma arrivano prima di me :)) ma dato che questa volta non vedo traccia di questo argomento sul loro sito, metterò giù due righe.
Pare che un Giudice di Pace abbia revocato la sospensione della patente a un frate, fermato per eccesso di velocità: stava correndo al capezzale di un moribondo per l’estrema unzione; il magistrato ha riconosciuto la ragione d’urgenza nel fatto (mi chiedo se sia paragonabile a un 118…).
Vivrò abbastanza per vedere un Italia nella quale la laicità dello Stato non significhi concessione di particolari privilegi alle diverse confessioni ma assenza degli stessi?
Il numero di Marzo 2007 di (GNU) Linux Magazine contiene un’intervista al Consiglio Direttivo dell’Italian Linux Society, del quale faccio parte.
Reading the referers of this website, I found that someone reached it querying a search engine for
awk remove file extension
Well, it’s definitely easy to achieve it if your files have just a “.” in their names. You can use this one-liner that works inverting the problem :)
# substitute jpg with the extension you need (twice in the line)
for i in $(ls *jpg | awk -F "." '{print $1}'); do mv $i.jpg $i; done