228 private links
command | meaning |
---|---|
${parameter:-defaultValue} | Get default shell variables value |
${parameter:=defaultValue} | Set default shell variables value |
${parameter:?"Error Message"} | Display an error message if parameter is not set |
${#var} | Find the length of the string |
${var%pattern} | Remove from shortest rear (end) pattern |
${var%%pattern} | Remove from longest rear (end) pattern |
${var:num1:num2} | Substring |
${var#pattern} | Remove from shortest front pattern |
${var##pattern} | Remove from longest front pattern |
${var/pattern/string} | Find and replace (only replace first occurrence) |
${var//pattern/string} | Find and replace all occurrences |
${!prefix*} | Expands to the names of variables whose names begin with prefix. |
${var,} | Convert first character to lowercase. |
${var,pattern} | Convert only if the pattern match |
${var,,} | Convert all characters to lowercase. |
${var,,pattern} | Convert only if the pattern match |
${var^} | Convert first character to uppercase. |
${var^pattern} | Convert only if pattern match |
${var^^} | Convert all character to uppercase.} |
${var^^pattern} | Convert only if pattern match |
Wow ! Charts are only created with HTML and CSS, making them very efficient
Construire un makefile pas à pas.
hello-world: init
@ echo "Hello, world"
Un Makefile est une collection de règles, chacune étant composée d'une cible, de pré-requis (ou pas) et d'une recette. Dans notre exemple précédent, hello-world est la cible et @ echo "Hello, world"
est la recette de la règle. Elle spécifie un pré-requis: init
.
Wow there is great explanations on Generators in javascript here !
OMG ! Someone did it !
Comment configurer :
- Une autorité de certification
- Des certificats serveur, pouvant être utilisés par un serveur voulant faire du TLS.
- Des certificats clients, signés par l’autorité de certification, me permettant donc en théorie de me connecter sur le serveur.
A guide to use and understand the context managers from the ground
Une série des meilleures pratiques pour la création d'API
La suite devrait arriver prochainement.
(shared by Arthur HOARO's links)
La page de documentation indique comment résoudre le problème :
- il faut aller dans le dossier du programme Zotero (
/opt/zotero
ou/usr/lib/zotero
à ma connaissance) - puis aller dans
extensions/zoteroOpenOfficeIntegration@zotero.org/install
- exécuter
Zotero_OpenOffice_Integration.oxt
Voilà.... 🎉
Great resource !
Yay ! A great way to get the fundamentals of a compiler !
Sous le coude. C'est finalement facile aujourd'hui de se créer une adresse mail personnalisée !
Et oui ! Un guide comme cela, ça fait plaisir !
(via sebsauvage)