use http basic auth to authenticate requests to generate invoices
where the username is your access token and the password an empty string.
Send the amount
in terms of USD, and the currency you want to collect being
I hereby claim:
To claim this, I am signing this object:
--- | |
- name: Deploy new site release | |
user: deployer | |
hosts: all | |
tasks: | |
- name: Fetch repo updates | |
git: > | |
[email protected]:my/repo.git |
var Service = require('bridge-quote-service') | |
var RipplePaymentQuote = Service.RipplePaymentQuote | |
var ExternalPaymentQuote = Service.ExternalPaymentQuote | |
var BridgeQuote = Service.BridgeQuote | |
var RippleQuote = RipplePaymentQuote.extend({ | |
authorize: function(payment) { | |
if (payment.to_currency !== 'XRP') { | |
this.reject('Destination Currency Must be XRP') | |
} |
var Promise = require("bluebird"); | |
Promise.while = function(condition, action) { | |
var resolver = Promise.defer(); | |
var loop = function() { | |
if (!condition()) return resolver.resolve(); | |
return Promise.cast(action()) | |
.then(loop) | |
.catch(resolver.reject); | |
}; |
function RestifyController(model, name) { | |
this.model = model; | |
this.name = name | |
} | |
RestifyController.prototype.respondError = function(error, code) { | |
} |
<body> | |
<script> | |
var ctx = new AudioContext(); | |
var tone = ctx.createOscillator(); | |
var gain = ctx.createGain(); | |
var high = 220; | |
var low = 22; | |
var boing = function(x) { |
Architecture Questions:
Application: Is the application SOA oriented?
Does the application provide standard authentication mechanisms? (profiling, groups, roles, LDAP integration)?
Does the application provide monitoring and tracking of the operations executed?