keytool -genkey -alias client -keyalg RSA -keystore client.jks -keysize 2048
keytool -export -alias client -file client.crt -keystore client.jks
keytool -import -v -trustcacerts -alias client -file client.crt -keystore clienttrust.jks
| *.caesarscasino.com | |
| *.credit24.com | |
| *.credit24.com.au | |
| *.creditea.com | |
| *.fashionette.de | |
| *.hapipozyczki.pl | |
| *.ideafinancial.com | |
| *.mohegansuncasino.com | |
| *.online-metrix.net | |
| *.qa.threatmetrix.com |
keytool -genkey -alias client -keyalg RSA -keystore client.jks -keysize 2048
keytool -export -alias client -file client.crt -keystore client.jks
keytool -import -v -trustcacerts -alias client -file client.crt -keystore clienttrust.jks
| .table { | |
| width: 100%; | |
| max-width: 100%; | |
| margin-bottom: 1rem; | |
| } | |
| .table th, | |
| .table td { | |
| padding: 0.75rem; | |
| vertical-align: top; |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <rewrite> | |
| <rules> | |
| <rule name="Handle History Mode and custom 404/500" stopProcessing="true"> | |
| <match url="(.*)" /> | |
| <conditions logicalGrouping="MatchAll"> | |
| <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> | |
| <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> |
Put this on your wp-config.php
/* That's all, stop editing! Happy blogging. */
define('FS_METHOD', 'direct');
| #!/usr/bin/env bash | |
| # https://developers.supportbee.com/blog/setting-up-cucumber-to-run-with-Chrome-on-Linux/ | |
| # https://gist.github.com/curtismcmullan/7be1a8c1c841a9d8db2c | |
| # https://stackoverflow.com/questions/10792403/how-do-i-get-chrome-working-with-selenium-using-php-webdriver | |
| # https://stackoverflow.com/questions/26133486/how-to-specify-binary-path-for-remote-chromedriver-in-codeception | |
| # https://stackoverflow.com/questions/40262682/how-to-run-selenium-3-x-with-chrome-driver-through-terminal | |
| # https://askubuntu.com/questions/760085/how-do-you-install-google-chrome-on-ubuntu-16-04 | |
| # Versions | |
| CHROME_DRIVER_VERSION=`curl -sS https://chromedriver.storage.googleapis.com/LATEST_RELEASE` |
| /** | |
| * Sorts an array of objects In-Place, | |
| * sorting by multiple fields sequentially. | |
| * | |
| * @description This function is meant to be used | |
| * with arrays of objects, AND when you need to set | |
| * multiple sorting criteria. For other cases it is | |
| * recommended to use the native method `array.sort(callback)` | |
| * since for simple cases this function is more expensive | |
| * in time and memory. |
| def getReleasePath() { | |
| //Define RELEASE_PATH anywhere(in properties file) and your apk + mapping file will be copied there. | |
| return hasProperty('RELEASE_PATH') ? RELEASE_PATH : "${project.rootDir}\\Release" | |
| } | |
| android.applicationVariants.all { variant -> | |
| //Mapping file for proguard path for each variant | |
| def mappingFile = variant.variantData.mappingFile |