Install make
You will probably need build essential tools
# Ubuntu install build tools:
sudo apt-get install -y build-essential
You will probably need build essential tools
# Ubuntu install build tools:
sudo apt-get install -y build-essential
channel.backup
using inotifysudo apt install inotify-tools
import UIKit | |
import Security | |
let serviceIdentifier = "com.company" | |
let accessGroup = "com.company.app" | |
let kSecClassValue = kSecClass as NSString | |
let kSecAttrAccountValue = kSecAttrAccount as NSString | |
let kSecValueDataValue = kSecValueData as NSString | |
let kSecClassGenericPasswordValue = kSecClassGenericPassword as NSString |
I largely followed Florin's blog post, but have a few notes to add regarding issues I encountered:
gpg-agent
only automatically starts when gpg is used; for ssh, you'll need to ensure it's running.list
command inside gpg --edit-card
, look for the Key attributes
line to see what is currently selected. On my YubiKey 4, it defaulted to 2048 bits for all keys:Key attributes ...: rsa2048 rsa2048 rsa2048
Edit:
/etc/systemd/system/lnd.service
[Service]
# Install build tools
sudo apt-get install git build-essential automake libevent-dev libssl-dev pkg-config zlib1g-dev libzstd-dev
# Clone Tor
git clone https://git.torproject.org/tor.git
# Enter Tor dir
# Install build tools
sudo apt install git build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libminiupnpc-dev libzmq3-dev
# Clone the latest release
git clone -b v0.20.1 https://github.com/bitcoin/bitcoin.git
# Enter the cloned repo dir
// | |
// Geohash.swift | |
// mn_ios | |
// | |
// Created by Alex Bosworth on 11/26/14. | |
// Copyright (c) 2014 adylitica. All rights reserved. | |
// | |
import Foundation | |
import MapKit |
Install LND by cloning and building
sudo apt-get install -y build-essential
const sub = lnd.sendPayment(); | |
sub.on('error', err => { | |
console.log("ERR", err); | |
}) | |
sub.on('end', () => console.log("END")); | |
sub.on('status', status => console.log("STATUS", status)); | |
sub.on('data', data => { | |
console.log("PAYMENT", data); |