#2009
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function insertAfter(referenceNode, nodeTagName, nodeInnerHtml) { | |
var newNode = document.createElement(nodeTagName); | |
newNode.innerHTML = nodeInnerHtml; | |
referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling); | |
} | |
function updateBDDReport(){ |
- M'impliquer dans un projet innovant
- Etre heureux d'aller travailler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
RED="\[\033[0;31m\]" | |
YELLOW="\[\033[0;33m\]" | |
GREEN="\[\033[0;32m\]" | |
BLUE="\[\033[0;34m\]" | |
LIGHT_RED="\[\033[1;31m\]" | |
LIGHT_GREEN="\[\033[1;32m\]" | |
WHITE="\[\033[1;37m\]" | |
LIGHT_GRAY="\[\033[0;37m\]" |