Les systèmes GNU/Linux contiennent de nombreuses polices de caractères qui sont largement suffisantes pour un usage du quotidien. Il peut cependant arriver que vous ayez à travailler sur un document qui sera partagé avec des collègues sous Windows, qui utiliseront par défaut la police de caractères "Calibri", ce qui rendra le rendu sous linux sous-optimal, car une police de remplacement sera affichée.
Pour installer les polices complémentaires de celles du système, il est possible (…)
Accueil > SysAdmin
SysAdmin
Je range ici quelques trucs et astuces utiles pour la gestion au quotidien de ma station de travail, à titre de rappel ou d’information.
-
Ajouter des polices Windows sous Ubuntu
19 décembre 2023, par S. Téletchéa -
Django setup with rdkit for chemoinformatics studies
17 August 2023, by S. TéletchéaAlthough Rdkit and Django installation and deployment are well documented independently, it may become rapidly difficult to a newcomer to get a simple rdkit + django implementation working using a real apache backend. This article will detail how they can be implemented and used for a small demonstration application.
Django setup
We will first create our django sample application using virtualenv and pip.
virtualenv venv source venv/bin/activate pip install django==3.2.20
Now that (…) -
Adding timestamps in crontabs
17 August 2023, by S. TéletchéaCrontab entries are great to periodically execute a command, but lack advanced logging facilities. This article will just highlight a rapid tip to enhance this situation.
The cron service is meant to execute periodically a given task, but it lacks a proper logging facility.
To add a specific unique logging entry, we will use a variable define inside the crontab command line. Here is the content of my command line
LOG=/home/me/log/ PROGDIR=/home/me/bin
22 6 * * 1-7 (…)
Molecular Modelling and GNU/Linux