Working with ADOX products: http://www.adox.de .
- Water at 20°C
- ADONAL: Developer which equals to Rodinal
# install Roswell: https://github.com/roswell/roswell | |
# and Qlot: https://github.com/fukamachi/qlot | |
# they are "must have" tools if you are Common Lisp professional :) | |
git clone [email protected]:nEXT-Browser/nEXT.git | |
cd nEXT | |
echo 'ql :all :latest' > qlfile | |
qlot install | |
ros use ccl-bin |
module Fastlane | |
module Actions | |
module SharedValues | |
INSERT_BUILD_PHASES_CUSTOM_VALUE = :INSERT_BUILD_PHASES_CUSTOM_VALUE | |
end | |
class InsertBuildPhasesAction < Action | |
def self.run(params) | |
require 'xcodeproj' |
node { | |
echo 'Results included as an inline comment exactly how they are returned as of Jenkins 2.121, with $BUILD_NUMBER = 1' | |
echo 'No quotes, pipeline command in single quotes' | |
sh 'echo $BUILD_NUMBER' // 1 | |
echo 'Double quotes are silently dropped' | |
sh 'echo "$BUILD_NUMBER"' // 1 | |
echo 'Even escaped with a single backslash they are dropped' | |
sh 'echo \"$BUILD_NUMBER\"' // 1 | |
echo 'Using two backslashes, the quotes are preserved' | |
sh 'echo \\"$BUILD_NUMBER\\"' // "1" |
#!/bin/sh | |
## | |
## Create a CISCO AnyConnect VPN Client *.deb from anyconnect-predeploy-linux-*.tar | |
## Copyright (c) SATOH Fumiyasu @ OSS Technology Corp., Japan | |
## | |
## License: GNU General Public License version 3 | |
## | |
set -u | |
set -e |
KEY=XXXXXXXXXXXX | |
HOST="https://metrics.crisidev.org" | |
mkdir -p dashboards && for dash in $(curl -k -H "Authorization: Bearer $KEY" $HOST/api/search\?query\=\& |tr ']' '\n' |cut -d "," -f 5 |grep slug |cut -d\" -f 4); do | |
curl -k -H "Authorization: Bearer $KEY" $HOST/api/dashboards/db/$dash > dashboards/$dash.json | |
done |
Working with ADOX products: http://www.adox.de .