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
def compose[A,B,C](f: B => C, g: A => B): A => C = | |
a => f(g(a)) | |
def curry[A,B,C](f: (A, B) => C): A => (B => C) = | |
a => b => f(a, b) | |
def uncurry[A,B,C](f: A => B => C): (A, B) => C = | |
(a, b) => f(a)(b) |
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
typeof null // object | |
null instanceof Object // false |
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
typeof null // object | |
null instanceof Object // false |
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 | |
require __DIR__ . '/vendor/autoload.php'; | |
use \Ovh\Api; | |
// Informations about your application | |
$applicationKey = "your_app_key"; | |
$applicationSecret = "your_app_secret"; | |
$consumer_key = "your_consumer_key"; | |
// Information about API and rights asked |
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
package testPackage; | |
/* | |
* Package: testPackage | |
* Filename: TestApplet.java | |
* Class: TestApplet | |
* Date: [[10 June]] of [[2015]] 14:55:52 | |
*/ |
NewerOlder