Chromebook: run a SSH server on Chrome OS

In this post, we’ll cover how to run a SSH server directly on Chrome OS (ie not into a Crouton chroot). One of the first things I do on any machine (FreeBSD, Linux, Mac OS X or Windows) is to install, run and configure the SSH server. It’s always convenient to be able to scp from […]

Read more

December 2014 links

Some links of stuff I appreciated this month. Links to French content are in a separate post. You can also take the time machine to November 2014. AI What if instead to understand how the brain works, we copy the neural connections as is? This is what the OpenWorm project tries to do with C. […]

Read more

November 2014 links

Some links of stuff I appreciated this month. Links to French content are in a separate post. You can also take the time machine to October 2014. November is the Philae landing on the Comet Churyumov-Gerasimenko month and the ESA photo release under CC-BY-SA (one of them here) month. Mainly DevOps links in this post, a […]

Read more

October 2014 links

Some links of stuff I appreciated this month. Links to French content are in a separate post. In the servers world SSL. October is the month we disabled SSLv3 protocol support from nginx following the POODLE attack. So this means we can look to this paper, nginx configuration and a tool to check SSL configuration. […]

Read more

Grip end of life. Migration to Dwellers and Ysul.

We’re migrating this summer our semi-public web and shell server Grip, so we can provide  more space disk, more RAM and better CPU. Grip EOL date is 2014-07-31. Alternative servers are ready now. The new offer We both offer a traditional FreeBSD shell and web server and a CentOS 7 application server with OpenShift and […]

Read more

Wikimedia Commons and the public space

Hotel Charleroi is an artist residency project at Charleroi. Some twenty artists, mainly from Vienna use Charleroi as a playground to explore and interact with the public space. Invited to give a talk, I offered two topics: Wikimedia Commons and the public space The Creative Commons licensing framework If you’re interested by a presentation about […]

Read more

Structure SQL de Sycorax

Voici la structure SQL actuelle minimale de Sycorax : Structures des tables SQL de Sycorax CREATE TABLE Files (   file_id mediumint(8) NOT NULL AUTO_INCREMENT,   file_path mediumtext NOT NULL,   tune_id mediumint(8) NOT NULL,   PRIMARY KEY  (file_id),   KEY tune_id (tune_id),   KEY file_path (file_path(255)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE Tunes ( […]

Read more