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
openssl req \ | |
-newkey rsa:2048 -nodes -keyout domain.com.key \ | |
-out domain.com.csr |
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
<?php | |
/** | |
* Use composers autoload class to load library files | |
*/ | |
require_once '../vendor/autoload.php'; | |
/** | |
* AdExchangeSeller Api class | |
* |
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
public <A, B> B foldLeft(List<A> l, B z, Function2<B, A, B> f) { | |
List list; | |
do { | |
if (Nil..MODULE$.equals((Object)(list = l))) { | |
B b = z; | |
return b; | |
} | |
if (!(list instanceof .colon.colon)) break; | |
.colon.colon colon2 = (.colon.colon)list; | |
Object h = colon2.head(); |
NewerOlder