I hereby claim:
- I am searsaw on github.
- I am searsaw (https://keybase.io/searsaw) on keybase.
- I have a public key ASAzDr14E_3O8kFKfIN3RRg8GjKq-3ocwZ10Mo7HWYbkEgo
To claim this, I am signing this object:
from datetime import datetime, timedelta | |
import json | |
import boto | |
def get_kinesis_data_iterator(stream_name, minutes_running): | |
# Connect to Kinesis | |
kinesis = boto.connect_kinesis() | |
# Get data about Kinesis stream for Tag Monitor | |
kinesis_stream = kinesis.describe_stream(stream_name) |
I hereby claim:
To claim this, I am signing this object:
Fri Nov 16 21:02:04 UTC 2018 |
db.getCollection('collectionName').find().sort({"$natural": -1}).limit(1).map(function(doc) { | |
var obj = {} | |
obj["_id"] = doc._id | |
obj["another_field"] = doc.another_field | |
return obj | |
})[0] |
#!/bin/bash | |
# Download fluffypony's GPG key | |
wget -q -O binaryfate.asc https://raw.githubusercontent.com/monero-project/monero/master/utils/gpg_keys/binaryfate.asc | |
# Verify fluffypony's GPG key | |
echo "1. Verify binaryfate's GPG key: " | |
gpg --keyid-format long --with-fingerprint binaryfate.asc | |
# Prompt user to confirm the key matches that posted on https://src.getmonero.org/resources/user-guides/verification-allos-advanced.html | |
echo |
#!/usr/bin/env bash | |
set -euo pipefail | |
# make sure username is passed as argument | |
if [[ "$#" -ne 1 ]]; then | |
echo "not enough arguments" | |
echo "Usage: create_kubernetes_user.sh USERNAME" | |
exit 1 | |
fi |
From 40fc90640aeef70790012f19054199190294447b Mon Sep 17 00:00:00 2001 | |
From: Alex Sears <[email protected]> | |
Date: Sun, 27 Mar 2022 11:36:30 -0400 | |
Subject: [PATCH] Add extra hop to single hop invoice test | |
--- | |
lntest/harness.go | 29 +++++-- | |
lntest/itest/lnd_single_hop_invoice_test.go | 84 ++++++++++++++++++++- | |
lntest/itest/lnd_test.go | 19 ++++- | |
3 files changed, 121 insertions(+), 11 deletions(-) |