Skip to content

Instantly share code, notes, and snippets.

@HyacintheHamon
HyacintheHamon / mongodb-s3-backup.sh
Created July 10, 2018 17:37 — forked from eladnava/mongodb-s3-backup.sh
Automatically backup a MongoDB database to S3 using mongodump, tar, and awscli (Ubuntu 14.04 LTS)
#!/bin/sh
# Make sure to:
# 1) Name this file `backup.sh` and place it in /home/ubuntu
# 2) Run sudo apt-get install awscli to install the AWSCLI
# 3) Run aws configure (enter s3-authorized IAM user and specify region)
# 4) Fill in DB host + name
# 5) Create S3 bucket for the backups and fill it in below (set a lifecycle rule to expire files older than X days in the bucket)
# 6) Run chmod +x backup.sh
# 7) Test it out via ./backup.sh
@HyacintheHamon
HyacintheHamon / add-new-crypto-to-peatio.md
Created June 22, 2018 07:05 — forked from brossi/add-new-crypto-to-peatio.md
Adding A New Cryptocurrency to Peatio

State: Draft
Based on the Peatio Stable branch


Coin Daemon

To the coin daemon's {coin}.conf file, include the -walletnotify command:

# Notify when receiving coins
// Gathered from the iOS 8 Documentation & examples on https://github.com/stripe/stripe-ios
// Apple Pay avialable October 2014
if([PKPaymentAuthorizationViewController canMakePayments])
{
NSDecimalNumber *amonut = [NSDecimalNumber decimalNumberWithString:@"3.99"]
PKPaymentRequest *paymentRequest = [PKPaymentRequest new];
PKPaymentSummaryItem *totalItem = [PKPaymentSummaryItem summaryItemWithLabel:@"Swiss Cheeze" amount:amount];
[paymentRequest setMerchantIdentifier:YOUR_MERCHANT_ID];