128 private links
Zip de répertoires sans des sous-répertoire en ligne de commande.
$ zip -r myarchive.zip dir1 -x dir1/ignoreDir1/* dir1/ignoreDir2/*
Les verbes dans les exigences ("requirements") sont reliés à la RFC 2119.
Maintenant, je le sais...
"""
-
MUST This word, or the terms "REQUIRED" or "SHALL", mean that the
definition is an absolute requirement of the specification. -
MUST NOT This phrase, or the phrase "SHALL NOT", mean that the
definition is an absolute prohibition of the specification. -
SHOULD This word, or the adjective "RECOMMENDED", mean that there
may exist valid reasons in particular circumstances to ignore a
particular item, but the full implications must be understood and
carefully weighed before choosing a different course. -
SHOULD NOT This phrase, or the phrase "NOT RECOMMENDED" mean that
there may exist valid reasons in particular circumstances when the
particular behavior is acceptable or even useful, but the full
implications should be understood and the case carefully weighed
before implementing any behavior described with this label. -
MAY This word, or the adjective "OPTIONAL", mean that an item is
truly optional. One vendor may choose to include the item because a
particular marketplace requires it or because the vendor feels that
it enhances the product while another vendor may omit the same item.
An implementation which does not include a particular option MUST be
prepared to interoperate with another implementation which does
include the option, though perhaps with reduced functionality. In the
same vein an implementation which does include a particular option
MUST be prepared to interoperate with another implementation which
does not include the option (except, of course, for the feature the
option provides.)"""
Différentes méthodes pour calculer les décimales de PI.
Excellent article sur le Blum Blum Shub en génération de nombres pseudo-aléatoires pour la cryptographie.
Le tout avec des exemples en Python.
Site très intéressant permettant de comparer les différents langages informatiques sur le même problème ou bout de code (snippet).
Contient plein de langages (liste non exhaustive) : Python, Rust, Perl, Ruby, Pascal, JS, Java, PHP, C#, C++, D, Fortan...
Voir aussi ici : https://www.programming-idioms.org/about#about-block-language-coverage
Script de compilation de ffmpeg avec libaom et libx265 pour av1.
EDIT : Erreur "ERROR: x265 not found using pkg-config"
Je verrai plus tard.
Connaître la taille des flux vidéo + audio en kb.
ffmpeg -i INPUT -c copy -f null -
HTOP permet d'afficher les processus sous forme d'arbre afin de stopper celui le plus niveau accessible.
Très utile pour arrêter les SHELL.
Copier des fichiers + répertoires, sans déplacer les fichers de plus de 4Go.
Utile pour copier atomiquement, donc sans lien des uns aux autres, des fichiers vers un disque en FAT32, en respectant les dossiers de manière récursive.
Exemple sous MacOS :
caffeinate rsync -rv --update --max-size=4G /path/in/local/ server:~/project/
Pleins d'outils Linux/Unix pour remplacer cat, ls, diff, du, find, grep
Screen est un de mes logiciels préférés sous Linux.
C'est extraordinaire.
Mais quand on fait un screen dans un screen, les commandes influent sur le screen de plus haut niveau englobant...
Pour faire un ctrl-A pour un screen à l'intérieur d'un screen, il faut envoyer vraiment un "CTRL-A" en faisant "Ctrl-A" + "A".
Les sockets (en fichier linux) sont des inter-process networking.
Un peu différents des "named pipes"
Comment gérer le fichu sticky bit...
chmod 6775 exe ==> -rwsrwsr-x
1 seule ligne de code (loc) pour faire une fonctionnalité précise en javascript.
Pour les vieux : l'âge du SourceWare Archive Group (SWAG) revient...
Pour avoir les noms de couleurs.
Plutôt utile.
Très utile pour dépanner au départ.
Indispensables !
Comment accélérer du code Python en "compilant à la volée" (?) des parties avec LLVM.
Les différences expliquées entre NGINX et Apache.
Très intéressant pour bien choisir en fonction du besoin.