I hereby claim:
- I am islandusurper on github.
- I am islandusurper (https://keybase.io/islandusurper) on keybase.
- I have a public key ASAG0Zto9GNYzTvF6tgz6hLRhzKr8qU7nHTGvh8Ad5rU7wo
To claim this, I am signing this object:
let | |
sources = import ./nix/sources.nix; | |
pkgs = import sources.nixpkgs {}; | |
in | |
pkgs.stdenv.mkDerivation rec { | |
pname = "lbry"; | |
version = "0.45.1"; | |
src = pkgs.fetchurl { | |
url = "https://github.com/lbryio/lbry-desktop/releases/download/v${version}/LBRY_${version}.deb"; | |
sha256 = "01qa9aqscb6y4p4i5kjn1vd6pfr08wb9062yc21nhndb9blka9pr"; |
I hereby claim:
To claim this, I am signing this object:
<ErrorRecovery> | |
<ListID>1235623425</ListID> | |
<EditSequence>whatever</EditSequence> | |
</ErrorRecovery> | |
<ErrorRecovery> | |
<OwnerID>FOO</OwnerID> | |
</ErrorRecovery> | |
<ErrorRecovery> | |
<TxnID>18302-1488303-random-numbers</TxnId> | |
<TxnNumber>9492023</TxnNumber> |
def flatten(items): | |
""" | |
Flatten a nested list of integers. | |
Passing a non-list instead returns a list containing the argument. | |
""" | |
if not isinstance(items, list): | |
return [items] | |
result = [] |
- name: Create VPC | |
ec2_vpc_net: | |
cidr_block: 10.0.0.0/16 | |
name: {{ Environment }} | |
state: present | |
tenancy: default | |
register: vpc | |
- name: Create Internet gateway | |
ec2_vpc_igw: vpc_id={{ vpc.vpc.id }} state=present |
<?php | |
use Behat\Mink\Extension\ElementNotFoundException; | |
use Drupal\DrupalExtension\Context\DrupalContext; | |
class FeatureContext extends DrupalContext { | |
/** | |
* @When I select the first autocomplete option for :prefix on the :field field | |
*/ |
use std::io::{BufferedReader, File}; | |
use std::num::FromStrRadix; | |
#[deriving(Show)] | |
struct TreeNode<'a> { | |
value: uint, | |
left: Option<&'a TreeNode<'a>>, | |
right: Option<&'a TreeNode<'a>>, | |
} |