This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The examples provided at [https://github.com/balanced/balanced-node/blob/master/snippets/order-credit-marketplace.js] | |
// and also: [https://docs.balancedpayments.com/1.1/guides/orders/credit-marketplace/] are not very detailed. | |
// The following example is what is required to get the marketplace bank account to then issue credits to your marketplace. | |
balanced.marketplace.then(function(marketplace) { | |
marketplace.owner_customer.bank_accounts.get(0).then(function(bankAccount) { | |
console.log(bankAccount); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#################################### | |
# Output file for HTML5 video # | |
# Requirements: # | |
# - handbrakecli # | |
# - ffmpeg # | |
# - ffmpeg2theora # | |
# # | |
# usage: # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
function AnotherController($scope, socket) { | |
// use the socket factory through your app, but you must use socket.then | |
// so that the actions occur once the socket is established | |
socket.then(function(socket) { | |
socket.emit('some_socket_event', {}); | |
}); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
do ($ = jQuery, window) -> | |
pluginName = "economicImpactMap" | |
defaults = | |
delay: 2000 | |
currentLocation = 0 | |
rotator = null | |
class Plugin | |
constructor: (@element, options) -> | |
@settings = $.extend {}, defaults, options |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
expect -c " | |
set timeout 1 | |
spawn mount /var/lib/jenkins/mnt/map | |
expect y,N { send y\r ; exp_continue } | |
sleep 20 | |
exit | |
" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<div class="l-canvas type_wide col_cont headerpos_fixed"> | |
<div class="l-canvas-h"> | |
<div class="l-header type_fixed"> | |
<?php do_action('uconn_banner'); ?> | |
</div> | |
</div> | |
<div class="l-header-h"> | |
<!— everything else for the header —> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#wpcf7-f492-p493-o1 span.wpcf7-list-item { | |
display:block; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
..+ .:. | |
..+8N+. .+$8+. | |
.++NNNN+=. .,+NNNN++.. | |
+7NNNNNN?+. ...+NNNNNNN+. | |
..+NNNN..NNN++. .,+NNN...NNN+. | |
. +DNN.....NNN+.. .+NNN ...NNN+. | |
..+DNN ..N7. NNN+. +NNN. .NN..NNN+. | |
++NN..:NNN .NN?+ .:?NN. .NNNO..NN7+ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (grunt) { | |
grunt.loadNpmTasks('grunt-contrib-concat'); | |
grunt.loadNpmTasks('grunt-contrib-jshint'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-clean'); | |
grunt.loadNpmTasks('grunt-contrib-copy'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.loadNpmTasks('grunt-recess'); | |
grunt.loadNpmTasks('grunt-karma'); |
NewerOlder