Riflessioni casuali su software, impresa e project management
“Do ut des: la condivisione della conoscenza è ricompensata con altra conoscenza”
Diego La Monica
CEO Axio Studio S.r.l.
-
Nginx: Semplificare la lettura dell’access.log
Periodicamente mi occupo di verificare il log di alcuni server per analizzare eventuali operazioni non previste e non autorizzate. Ci sono numerosi tool che già svolgono un monitoraggio attivo e…
-
Multiple files download on single link click
Sometimes happens that some people need to download multiple file from a single user interaction: the click on the link. Assuming that your browser suppors Javascript and considering to use jQuery to simplify the concepts, you can use a simple script to accomplish this job.
-
Detect if browser supports base64 dataURI using JavaScript
A long time ago Flickr have introduced base64 dataURI images in its pages. It brings a lot of benefits for users and web servers but at the time the most of the browsers was not supporting this schema. For the ones that does not konw what base64 data URI is, just mind to something that is written using 6 […]
-
Generate CSV Data URI from a table via javascript
Sometimes happens to export data from table in other format like XML or CSV. In this easy tutorial, we can see how to export data from table into CSV on client side using data stored into an HTML table.
-
Applicazioni Mobili: dall’ideazione alla pubblicazione
Per tutti coloro che fossero interessati, ecco la presentazione tenuta a SMAU Milano il 22/10/2014.
-
WordPress: menu con stile alterno per elementi pari e dispari
Tipicamente un menu di navigazione è organizzato come una serie di elementi (li) di un elenco puntato (ul). Anche WordPress adotta questa convenzione per l’elaborazione dei menu di navigazione.
-
Applicazioni cross browser e cross device
Quest’anno a SMAU ho affrontato un discorso che avevo iniziato al W3C Italia a maggio. Esplodendo alcuni concetti, rimuovendo molti tecnicismi e introducendo nuovi pensieri.
-
Howto: mysql obtain the right sorting for nested records from the same table
In those latest days I was wondering how to sort a table in mySQL that has an id a parent_id and a order column like the one that follows: id | parent_id | ordr | title —+———–+——+———————————- 1 | 0 | 1 | first section 2 | 0 | 2 | second section 3 | […]