I hereby claim:
- I am intelliot on github.
- I am el (https://keybase.io/el) on keybase.
- I have a public key ASCjbyFkeiCbSG7hjzsr910QsWKDT3H3aELofZepZZJfzAo
To claim this, I am signing this object:
➜ cm_build git:(develop) ✗ BOOST_ROOT=~/Downloads/boost_1_65_1 cmake -G "Unix Makefiles" -Dtarget=clang.debug.unity .. | |
CMake Warning at /usr/local/Cellar/cmake/3.9.1/share/cmake/Modules/FindBoost.cmake:771 (message): | |
Imported targets not available for Boost version 106501 | |
Call Stack (most recent call first): | |
/usr/local/Cellar/cmake/3.9.1/share/cmake/Modules/FindBoost.cmake:875 (_Boost_COMPONENT_DEPENDENCIES) | |
/usr/local/Cellar/cmake/3.9.1/share/cmake/Modules/FindBoost.cmake:1503 (_Boost_MISSING_DEPENDENCIES) | |
Builds/CMake/CMakeFuncs.cmake:352 (find_package) | |
CMakeLists.txt:143 (use_boost) | |
(function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){ | |
const RippleAPI = require('ripple-lib').RippleAPI; | |
let api = new RippleAPI({ | |
server: 'wss://s1.ripple.com:443' | |
}); | |
api.connect().then(() => { | |
api.getServerInfo().then(info => { | |
document.body.innerHTML = JSON.stringify(info); |
I hereby claim:
To claim this, I am signing this object:
Implement the method that receives the popup URL and use this sample code to parse the clientMetadataID
:
// In your POPPopupBridgeDelegate
- (void)popupBridge:(POPPopupBridge *)bridge willOpenURL:(NSURL *)url {
NSURLComponents *components = [NSURLComponents componentsWithURL:url resolvingAgainstBaseURL:NO];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"name IN %@", @[@"token", @"ba_token"]];
NSURLQueryItem *queryItem = [[components.queryItems filteredArrayUsingPredicate:predicate] firstObject];