Les vidéos d’Henri Guillemin
Toutes les vidéos:
https://www.rts.ch/archives/recherche/?q=guillemin
Exemples:
Napoléon
https://www.rts.ch/archives/dossiers/11217146-Napol%C3%A9on.html
L’Affaire Dreyfus
https://www.rts.ch/archives/dossiers/10837521-laffaire-dreyfus.html
L’autre avant-guerre (1871-1914)
https://www.rts.ch/archives/dossiers/henri-guillemin/3477314-lautre-avantguerre-18711914.html
La guerre qui vient
La Commune de Paris
https://www.rts.ch/archives/dossiers/henri-guillemin/3477764-la-commune-de-paris.html
If the rule you followed brought you to this, of what use was the rule ?
Anton Chigurh – No Country For Old Men
Among the calamities of war may be numbered the diminution of the love of truth, by the falsehoods which interest dictates, and credulity encourages.
Samuel Johnson, The Idler no. 30 (11 Nov. 1758)
Un fou rempli d’erreurs, que le trouble accompagne….
En vain monte à cheval pour tromper son ennui ;
Le chagrin monte en croupe et galope avec lui
(Nicolas BOILEAU-DESPRÉAUX, Épît. v.)
“Ainsi obsédé par ses échecs passés, il s’ingéniait à ruiner son présent.”
Backup if the office catches fire…
Feels like it should never happen. Yet:
https://en.wikipedia.org/wiki/2008_Universal_Studios_fire
Stumbled upon this one while looking for Kim Wilde career and realized this can happen to any business. So there maybe is an actual reason to carry those tapes out of the office now and then 😉
Unicode characters
Ctrl+shift+u and the unicode code
Unicode code | Result |
2122 | ™ |
00a9 | © |
2713 | ✓ |
SNMP logging a lot to Syslog
SNMPd is a systemd, unit now.
So the file we have to modify is not /etc/default/snmpd
but /etc/systemd/system/multi-user.target.wants/snmpd.service
We just need to change -Lsd to -LS4d to only log warning level messages and get rid of the millions of UDP connections.
[Unit]
Description=Simple Network Management Protocol (SNMP) Daemon.
After=network.target
ConditionPathExists=/etc/snmp/snmpd.conf
[Service]
Environment="MIBSDIR=/usr/share/snmp/mibs:/usr/share/snmp/mibs/iana:/usr/share/snmp/mibs/ietf:/usr/share/mibs/site:/usr/share/snmp/mibs:/usr/share/mibs/iana:/usr/share/mibs/ietf:/usr/share/mibs/netsnmp"
Environment="MIBS="
Type=simple
ExecStartPre=/bin/mkdir -p /var/run/agentx
ExecStart=/usr/sbin/snmpd -LS4d -Lf /dev/null -u Debian-snmp -g Debian-snmp -I -smux,mteTrigger,mteTriggerConf -f
ExecReload=/bin/kill -HUP $MAINPID
[Install]
WantedBy=multi-user.target
After that run:
systemctl daemon-reload
systemctl reload snmpd
Samba hell
The share options “read only” and “writeable” have the following defaults:
Default: read only = yes
Default: writeable = no
So, think of explicitly set write permissions if needed (or lose a lot of time searching why you cannot write, that happened to a err.. friend, you know :/).
Obey pam restrictions
has weird side effects like using the default UMASK set on the host for creating files, which de facto overwrite the force create mode
and force directory mode
options. That’s also a good way to lose time searching why the permissions are not set correctly.
On some old configurations I found it set to yes, but the default is now no.
Default: obey pam restrictions = no
Source: https://www.samba.org/samba/docs/current/man-html/smb.conf.5.html