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
#!/usr/bin/env bash | |
set -x | |
set -e | |
function build_and_push_docker_image() { | |
# build everything first... | |
images=(nginx django) | |
for i in "${images[@]}"; do | |
docker build -t defectdojo/defectdojo-${i}:${RELEASENUMBER}${RC_SUFFIX} -f Dockerfile.${i} . | |
if [ -z $RC_SUFFIX ]; then |
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
2020-03-26 09:54:39,134 org.owasp.dependencycheck.utils.Settings:798 | |
DEBUG - Setting: data.directory='C:\Data\dependency-check-5.3.1-release\data' | |
2020-03-26 09:54:39,137 org.owasp.dependencycheck.utils.Settings:798 | |
DEBUG - Setting: analyzer.jar.enabled='true' | |
2020-03-26 09:54:39,137 org.owasp.dependencycheck.utils.Settings:798 | |
DEBUG - Setting: analyzer.archive.enabled='true' | |
2020-03-26 09:54:39,137 org.owasp.dependencycheck.utils.Settings:798 | |
DEBUG - Setting: analyzer.python.distribution.enabled='true' | |
2020-03-26 09:54:39,138 org.owasp.dependencycheck.utils.Settings:798 | |
DEBUG - Setting: analyzer.python.package.enabled='true' |
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
Inleg 10 euro p.p. | |
Prijsverdeling 30-20-10 op basis van uitslag op gppredictor.com league | |
Inleg kan je nooit terugkrijgen als je geen zin meer hebt of de site stuk is of wat dan ook | |
Halverwege huilend uit de league stappen betekent nog steeds inleg kwijt, en nog steeds dat je een prijs kan winnen. |
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
Changing this: | |
/** | |
* Transform some characters in valid bbcodes | |
*/ | |
function bbcode_specialchars($text) | |
{ | |
$str_from = array('<', '>', '[', ']', '.', ':'); | |
$str_to = array('<', '>', '[', ']', '.', ':'); | |
return str_replace($str_from, $str_to, $text); |