Paolo Donadeo — LifeLOG

All about my life, job and thoughts
  • rss
  • Home
  • Blog
  • Contacts
    • GPG public key
    • Alessandro Donadeo — Curriculum Vitæ

PyCon3

Paolo | 17/05/2009 | 23:51

Ho avuto davvero una settimana intensa, motivo per cui scrivo solo ora delle mie impressioni sul PyCon3, conclusosi lo scorso fine settimana.

Anzitutto, perché andare ad una manifestazione su Python, dal momento che il mio linguaggio di programmazione preferito è l’Objective Caml? Le risposte sono molteplici.

Anzitutto Python, tra i linguaggi a tipizzazione dinamica, è quello più pulito ed ortogonale che ci sia in circolazione. Ha molte caratteristiche che lo avvicinano alla programmazione funzionale, il che è solo un pregio per me, ed in barba a quel che afferma Guido van Rossum, papà di Python. Non sono l’unico comunque a pensare che il successo di Python sia dovuto soprattutto a questi fattori. In un celeberrimo post del 2002 Paul Graham spiegava proprio con la continua aggiunta di caratteristiche funzionali al linguaggio il suo successo.

Quindi il linguaggio merita certamente molta attenzione e nessuno programmatore professionista dovrebbe farsi scappare la possibilità di impararlo, se già non lo conosce.

Un altro ottimo motivo per partecipare al PyCon è certamente l’eccellente livello degli ospiti invitati. Su tutti quest’anno svetta certamente lo stesso van Rossum, creatore del linguaggio, che ha tenuto due talk estremamente interessanti, sulla genesi e lo sviluppo della versione 3.0 di Python e sugli ultimi sviluppi di Google App Engine. Estremamente interessante il talk di Alex Martelli intitolato “Lo Zen e l’Arte della Manutenzione delle Astrazioni” in cui ha parlato come secondo lui un’astrazione deve essere concepita e quali obiettivi si debba porre per essere manutenibile nel lungo periodo. Martelli ha anche spiegato un pattern molto efficace, la Dependency Injection. Questo pattern mi piace moltissimo e l’unica nota un po’ critica (anzi ironica, direi) che vorrei fare è che… assomiglia moltissimo all’uso quotidiano che si fa in OCaml dei funtori, anzi, sono proprio i funtori implementati in Python. Sempre con buona pace per Guido van Rossum :-)

Altri interventi di relatori meno “big” sono stati comunque molto interessanti: certamente la qualità dei talk è complessivamente da alta a molto alta.

Un altro buon motivo per partecipare al PyCon è la comunità di smanettoni e professionisti che gravita attorno a Python. Il solito Paul Graham scriveva nel 2004 del Python paradox (traduzione italiana qui) vale a dire: se programmi in Python sei uno smanettone, visto che nell’industria non si usa(va); se sei uno smanettone ci sono buone possibilità che ti piaccia programmare e sappia farlo bene; ergo, se devo cercare un buon programmatore, meglio cercarlo tra coloro che conoscono Python piuttosto che tra coloro che mettono Java in curriculum. Non fa una piega. E se Graham fosse venuto al PyCon3, invece di stare a casa a poltrire, avrebbe avuto un’altra conferma del suo paradosso. Tanta gente simpatica e competente, possibilità di parlare con tutti delle proprie esperienze di programmatore, ma anche di fesserie collegate al mondo dell’informatica in generale, tipo: “ma tu c’hai un Mini Dell? Come va Linux su ’sto coso?”. Cose così insomma.

L’elogio dell’organizzazione è doveroso, ma non ci voglio spendere molte parole. Il PyCon3, come il PyCon2 l’anno scorso, è organizzato in maniera perfetta sotto ogni punto di vista. Punto e basta.

Una riflessione finale: nel momento in cui i “big” dell’informatica, come Google, promuovono Python a spintoni (Guido van Rossum è pagato da Google per passare metà del suo tempo su Python) e lo adottano come principale piattaforma di sviluppo, possiamo dire finito il “paradosso Python”? Cominceremo a vedere programmatori mediocri mettere in curriculum Python perché va di moda come nel 2004 andava di moda Java? Probabilmente non siamo arrivati a questo punto, ma poco ci manca. Spero che la comunità Python si conservi vivace come ora, ma ho ottime speranze: quella Java non è stata mai così vivace neanche nei suoi momenti migliori (quali, poi?).

Ah, dimenticavo: vince il premio di domanda più assurda del PyCon3 quella di una persona che ha chiesto a Guido van Rossum se Google ha intenzione di esporre il proprio API di Google App Engine anche per altri linguaggi, oltre a Python e Java, tipo, per esempio… Ruby o PHP! Risate a scena aperta dalla platea (devo dire, me compreso). Guido attende la traduzione in cuffia e, quando arriva, strabuzza gli occhi, capisce il motivo della risata generale ma, compostissimo, risponde che per ora no, non se ne parla ed il futuro è molto imprevedibile. Un vero gentleman!

All’anno prossimo, speriamo sempre a Firenze, tremo all’idea che possano spostare il PyCon a Cinisello Balsamo!

Comments
Comments Off
Categories
Article, Computer programming, Italian, Python, Spare time
Tags
Article, Computer programming, Italian, Python, Spare time
Comments rss Comments rss
Trackback Trackback

Information technology disgrace

Paolo | 03/03/2009 | 2:15

The world of information technology is made by men and, like any other activity in which human beings are involved in, mistakes happens. Sometimes huge mistakes. And huge mistakes turn out into disgraces. One of these disgraces has a name: PHP.

Here is the story: some days ago wordpress.org released the latest version and I decided to upgrade. No db changes, everything seems ok. But, wait a moment… the sidebar is broken! To be honest, the page itself seems to be broken. I did nothing strange. Ok, let’s rationalize this: ssh on the server, cd to the wordpress directory and issue:

$ php index.php
Segmentation fault

What the frack?!? I had no time to investigate more, and I decided to install the most recent working backup (I use GIT to track everything, including db backups) and forgot it for some days. Tonight I decided to solve the problem. I installed everything on my PC and, by hacking the DB, I was able to remove all the sidebar widgets, among which I suspected the guilty should be. Than, from Wordpress admin I added exactly the same widgets, in the very same order and with the same configuration.

Result? No more segfault.

Now, how can a so popular application be so fragile? Are Wordpress guys stupid, or what? No, this time the problem is with the technology. One word suffices: PHP.

Yes, I know, I perfectly know I shouldn’t focus myself on this or that technology, I now Facebook is made with PHP, I know everything, but… as an engineer I simply can’t ignore how poor this language is!

Hey, if I considered the language choice unimportant I should work in the marketing :-)

End of this rant: I started my own blog, I’ll write it in a real programming languages, Objective Caml, I’ll never be rich but at least I’ll never ever spend 3 hours of my life debugging a PHP buggy blog.

Comments
4 Comments »
Categories
Article, Computer programming, Digital life, English, Objective Caml, PHP
Tags
Article, Computer programming, Digital life, English, Objective Caml, PHP
Comments rss Comments rss
Trackback Trackback

Draw something on the screen… and interact with it!

Paolo | 01/09/2008 | 13:30

Summary of the previous episodes: 10 days ago Richard Jones complained about the difficulties to achieve simple tasks (drawing a function graph on the screen) on modern computers with modern programming languages; the day after Erik de Castro Lopo replied with a post in which he used GTK and Cairo (better: the OCaml bindings) to achieve the result to draw a simple function on the screen. Yesterday Matias Giovannini added some pepper to this argument using SDL to draw the Newton fractal.

So, what can be added to all this? With a perfect graphic toy you can draw on a window with simple commands, of course, but you also want to interact with the objects you drew. So I elaborated Erik example to add some keyboard and mouse interaction with the graphics on the screen. Read the rest of this entry »

Comments
2 Comments »
Categories
Article, Computer programming, English, Objective Caml, Spare time
Tags
Article, Computer programming, English, Objective Caml, Spare time
Comments rss Comments rss
Trackback Trackback

PyCon Due

Paolo | 14/05/2008 | 13:32

PyCon2 Italia official logo

Si è appena conclusa la seconda convention italiana dedicata al linguaggio Python, il PyCon2, svoltosi a Firenze lo scorso fine settimana. Pur non essendo un vero pythonista sono comunque interessato a Python perché in questo momento gran parte della mia attività di consulenza richiede la conoscenza di questo linguaggio e, devo dire, perché molto attirato da alcuni key note, tra i quali spicca certamente quello di Alex Martelli su Google App Engine.

Un altro aspetto interessante è stato per me il constatare come molti talk fossero incentrati sulle tecnologie legate al web e siccome sto scrivendo Ex-nunc, un web framework in Objective Caml, ho voluto informarmi su quale fosse lo stato dell’arte di progetti simili scritti in Python.

L’organizzazione della manifestazione è stata a dir poco eccellente. Develer, l’azienda che ha promosso ed organizzato il PyCon2, non ha tralasciato nessun dettaglio, a partire dal sito della manifestazione, dettagliatissimo e ricco di informazioni, dalla scelta dell’albergo centralissimo e raggiungibile a piedi dalla stazione ferroviaria, fino al ricco buffet.

Anche l’organizzazione logistica dei talk è stata di livello eccezionale: ottima acustica e disponibilità di traduzione simultanea per gli ospiti di lingua Inglese.

Infine, magari meno importante, la cornice della città di Firenze è splendida e, seppure immagino sia possibile organizzare un PyCon3 a Sesto San Giovanni, spero davvero che scelgano ancora, l’anno prossimo, una città in cui ad ogni angolo si vedono panorami come questo.

Organizzazione perfetta, argomenti trattati interessanti ed ospiti internazionali hanno fatto del PyCon2 un appuntamento di assoluto rilievo, che non teme il confronto di nessuna manifestazione simile nel mondo. Per il panorama italiano si tratta poi di un fatto del tutto eccezionale anche dal punto di vista culturale, in un paese che di tecnologia parla sempre meno e di software libero non parla affatto.

Comments
2 Comments »
Categories
Article, Computer programming, Italian, Python, Spare time
Tags
Article, Computer programming, Italian, Python, Spare time
Comments rss Comments rss
Trackback Trackback

Sending emails via Gmail with Objective Caml

Paolo | 26/04/2008 | 23:00

Gmail logo with the caml

Motivation

Last week I was writing a Python script to make an automatic backup, and I decided to send me an email in case of scp failure. I decided to use Python to send the email, possibly via GMail and I found this interesting blog post: Sending emails via Gmail with Python. I like Python, it’s a good programming language, but my heart (as a developer!) beats for the Objective Caml programming language.

So I decided to port the script presented in the post in OCaml. The result is this sendmail.ml.

Compiling the script

To compile the script you need four software components:

  1. the Objective Caml environment. You can download it from the INRIA site;
  2. Findlib, to make compiling very simple;
  3. Ocamlnet: here is the home page of the project;
  4. OCaml binding to the SSL library.

You can of course compile all this stuff, but every decent Linux distributions has all packaged. In Debian you have to run the following command:

# aptitude install ocaml libocamlnet-ocaml-dev \
  libssl-ocaml-dev ocaml-findlib

Now, to compile the script, issue the command:

$ ocamlfind ocamlopt -linkpkg -package \
  netstring,smtp,ssl,str sendmail.ml -o sendmail

Before using it, remember to customize your name, email address, GMail user and password.

Code comparison

The first difference that jumps out at everyone confronting the two scripts is the number of lines: 41 lines for Python against 163 of my OCaml version. The difference is justified by the fact that the Python standard library comes with an almost full featured SMTP client, with ESMTP and TLS capability. On the other side Objective Caml has a very concise standard library, which includes essential modules and data structures, but no “batteries” are provided out of the box. This is a precise design decision by INRIA and, in some ways, I agree with them. Luckily the OCaml community is a source of excellent libraries and bindings, like Ocamlnet by Gerd Stolpmann and the SSL library binding, written by Samuel Mimram. The first one is in particular the Swiss Army Knife for network oriented battles.

Since the SMTP client provided by Ocamlnet doesn’t include TLS capability I decided to stole the source code and adapt it to my needs, to have a more comfortable and high level interface resembling the one offered by the Python standard library.

So the different length is easily explained: 109 lines of code are devoted to the smtp_client class, and the actual script is 54 lines long.

The forward pipe operator

All Turing complete computer languages are equivalent, but everyone knows this is only the theory and everyone have a programming language of choice. Here are two examples of what you can do in OCaml.

The first is the pipe operator:

?View Code OCAML
let (|>) x f = f x

Here we define a (very common in FP) infix operator which simply inverts the order of its operands. What the frack is this? Very simple, we use it to invert the order of a function with its last parameter so, if we want to compute the 3rd Fibonacci number we can write:

?View Code OCAML
let fib3 = fibonacci 3

but also:

?View Code OCAML
let fib3 = 3 |> fibonacci

This is not a style issue, we can define a simple infix operator that feeds a function with a value; we can of course connect several functions together, like in a shell script with the Unix pipe operator, transforming an ugly and difficult to be read call:

?View Code OCAML
let result = func1(func2 (func3(x)))

into:

?View Code OCAML
let result = x |> func3 |> func2 |> func1

In the sendmail.ml script, line 127, we read:

?View Code OCAML
email_string |>
  Str.global_replace new_line_regexp "\r\n" |>
    Str.split crlf_regexp |>
      List.iter (fun s ->
        self#output_string (if String.length s > 0 && s.[0] = '.' then
                              ("." ^ s ^ "\r\n")
                            else s^"\r\n"));

Here we take the string containing the email, we replace all new lines with the sequence “\r\n”, split the stream into lines and in the end send each line to the SMTP server, taking care of quoting each line starting with a period. In 6 lines of code.

Algebraic data type

Algebraic data type are a very interesting aspect of functional programming. We can easily wrap two heterogeneous data types into a single one with two line of code:

?View Code OCAML
type socket =
  | Unix_socket of Unix.file_descr
  | SSL_socket of Ssl.socket

The smtp_client class contains a reference to the connection handle used for communicating with the server which is a plain file descriptor or an SSL socket, which one depends on the state of the communication. I do not want to create a virtual class or an interface and two implementing class as I should do in horrible languages like Java, spending half an hour deciding which methods to put in the public interface, and so on; after all, it’s only a file descriptor!

Now I have a new type which is a disjoint union of the two original types and I can write code like this (line 54):

?View Code OCAML
let input = match channel with
  | Unix_socket s -> Unix.read s
  | SSL_socket s -> Ssl.read s in

Here we say: if channel is actually a Unix file descriptor, let’s define a new function “input” which is the standard function “read”, from Unix module, otherwise, if channel is an SSL socket, let’s define “input” as the Ssl.read function, which works only in ciphered sockets. From now on I’ll use input instead of one of the two original functions.

Ok, it’s time to stop the waffle. Enjoy the script if you need, it’s completely free, like in free beer, in free speech and even in free sex! :-)

Comments
Comments Off
Categories
Article, Computer programming, English, Objective Caml, Python, Spare time
Tags
Article, Computer programming, English, Objective Caml, Python, Spare time
Comments rss Comments rss
Trackback Trackback

« Previous Entries

No software patents!

stopsoftwarepatents.eu petition banner

Facets (like tags, but better)

Article Books Chillout Cinema Computer programming Digital life Editors Essay Information retrieval Internet Job Karate Librarianship Life Linux Music News Nu-jazz Objective Caml Photography PHP Politics Python Random thoughts Review Science fiction South American literature Spare time Tips Visual arts Writing

Recent Posts

  • Avatar
  • Mike: preferisco ricordarlo così
  • PyCon3
  • La somma dei giorni
  • I see angels…
  • This man doesn’t speak in my name!
  • Vals Im Bashir

Site map

  • Home
  • Blog
  • Contacts
    • GPG public key
    • Alessandro Donadeo — Curriculum Vitæ

Old posts

Blogroll

  • Alex
  • Andrea
  • Anna on MySpace
  • Benji
  • Dome
  • Gigi
  • Ilaria
  • kOoLiNuS’s blog (English)
  • kOoLiNuS’s blog (italian)
  • Le ricette del secco
  • Roberto Gastaldi
  • Tommaso Carullo

Make me a present…

My Amazon.com Wish List
My Hoepli.it Wish List
My Hoepli.it Wish List

La mia libreria

Administration

  • Log in
  • Entries RSS
  • Comments RSS
  • WordPress.org
rss Comments rss valid xhtml 1.1 Viewable With Any Browser design by jide