>$ openssl s_client -connect crowd.devsecops.acme:80
>$ openssl ciphers -v 'TLSv1.2' | head -4
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
| #Read https://rolln.de/knoppo/xtract/blob/master/.gitlab-ci.yml | |
| stages: | |
| - configure | |
| - compile | |
| - unit-testing | |
| - package | |
| - integration-testing | |
| - verify | |
| - code-review | |
| - install |
$> python -c "import sys, urllib as enc; print enc.quote_plus(sys.argv[1])" "p@s#w:E"
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
| # sudo usermod -a -G sudo gitlab-runner | |
| # sudo visudo or sudo vi /etc/sudoers | |
| # %gitlab-runner ALL=(ALL) NOPASSWD: ALL # All members of gitlab-runner to run sudo w/o pwd | |
| # gitlab-runner ALL=(ALL) NOPASSWD: ALL # run sudo w/o password | |
| # gitlab-runner ALL=(ALL) NOPASSWD: /usr/bin/apt | |
| stages: | |
| - sw-quality-tools | |
| - dev-tools | |
| - dependencies |
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
| <?xml version="1.0" encoding="UTF-8" ?> | |
| <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/"> | |
| <!-- Output the log message to system console. | |
| --> | |
| <appender name="MyConsoleAppender" class="org.apache.log4j.ConsoleAppender"> | |
| <param name="Target" value="System.out"/> | |
| <layout class="org.apache.log4j.PatternLayout"> | |
| <param name="ConversionPattern" value="%-5p %c{1} - %m%n"/> | |
| </layout> | |
| </appender> |
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
| #Read https://rolln.de/knoppo/xtract/blob/master/.gitlab-ci.yml | |
| stages: | |
| - configure | |
| - compile | |
| - unit-testing | |
| - package | |
| - integration-testing | |
| - verify | |
| - code-review | |
| - install |
NOTE: NEEDS UPDATING FOR C++17.
Maintainer: Adrien H.L (happyman ad hotmail dot com)
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
You are free to share and adapt these guidelines, as long as you provide attribution to this source and keep the same license. For more information, please consult the link above.
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
| // http://stackoverflow.com/a/34032216/78204 | |
| function Controller() { | |
| installer.autoRejectMessageBoxes(); | |
| installer.setMessageBoxAutomaticAnswer("OverwriteTargetDirectory", QMessageBox.Yes); | |
| installer.installationFinished.connect(function() { | |
| gui.clickButton(buttons.NextButton); | |
| }) | |
| } |
