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
Installation. | |
$ curl 'https://raw.github.com/authy/authy-ssh/master/authy-ssh' -o authy-ssh | |
$ sudo bash authy-ssh install /usr/local/bin | |
$ sudo /usr/local/bin/authy-ssh enable `whoami` <your-email> <your-country-code> <your-cellphone> | |
$ authy-ssh test | |
$ sudo service ssh restart |
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
%% @author Ian Wilkinson | |
%% @doc interval_tree presents an Interval Tree where keys can be associated with intervals. | |
%% Furthermore, when instantiating the Interval Tree, you can indicate whether the low or high endpoints | |
%% can be half-open, or closed. | |
%% | |
%% It may be worth investigating <a href="http://www.soi.city.ac.uk/~ross/papers/FingerTree.html">Finger Trees</a> | |
%% as a possible alternative to Red-Black trees for implementing the Interval Tree. | |
%% | |
%% @reference <a href="http://mitpress.mit.edu/catalog/item/default.asp?ttype=2&tid=11866"> | |
%% Introduction to Algorithms</a> |
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
# Example xml | |
<?xml version="1.0" encoding="UTF-8" ?> | |
<configuration> | |
<application id="test"> | |
<platform id="vk"> | |
<appId>123</appId> | |
<secretKey>secret</secretKey> | |
<packages> | |
<package id="vk0" price="100" points="3" /> |
NewerOlder