I hereby claim:
- I am jojobyte on github.
- I am jojobyte (https://keybase.io/jojobyte) on keybase.
- I have a public key whose fingerprint is 4B83 BD73 2117 517C 8D58 C087 D09C 523A 7AC1 29B0
To claim this, I am signing this object:
import { getBalance, getPools, getPoolBalances, getLiquidityProviders, } from './fetch.js' | |
import { | |
getStableCacaoValue, convertCacaoToStableValue, convertAssetToStableValue, calculateLiquidityPoolBalances, | |
formatCacaoValue, | |
} from './calculate.js' | |
let TARGET_ASSET = 'DASH.DASH' | |
let STABLE_COIN_ASSET = 'ETH.USDT-0XDAC17F958D2EE523A2206206994597C13D831EC7' | |
const pools = await getPools() |
I hereby claim:
To claim this, I am signing this object:
username: vagrant | |
password: vagrant | |
sudo apt-get update | |
sudo apt-get install build-essential zlib1g-dev git-core sqlite3 libsqlite3-dev | |
sudo aptitude install mysql-server mysql-client | |
sudo nano /etc/mysql/my.cnf |
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\Cmder] | |
[-HKEY_CLASSES_ROOT\Directory\shell\Cmder] |
Note: Please check this blog post for more details on these functions.
Sort a SQL query with id
and parentid
so that
the rows have the correct order of the tree.
Parameters:
q
(Array): A query result (see example below)<html> | |
<body style="background: #333"> | |
<script > | |
var gui = require('nw.gui'); | |
var win = gui.Window.get(); | |
function takeSnapshot() { | |
win.capturePage(function(img) { | |
var popWindow = gui.Window.open('popup.html', | |
{width: 420, height: 300}); | |
popWindow.on('loaded', function() { |
$(function( | |
function Menu(cutLabel, copyLabel, pasteLabel) { | |
var gui = require('nw.gui') | |
, menu = new gui.Menu() | |
, cut = new gui.MenuItem({ | |
label: cutLabel || "Cut" | |
, click: function() { | |
document.execCommand("cut"); | |
console.log('Menu:', 'cutted to clipboard'); |
#!/bin/bash | |
# Install script for Latest WordPress by Johnathan Williamson - extended by Don Gilbert | |
# Disclaimer: It might not bloody work | |
# Disclaimer 2: I'm not responsible for any screwups ... :) | |
# DB Variables | |
echo "MySQL Host:" | |
read mysqlhost | |
export mysqlhost |
/* | |
* Copyright (c) 2010 Tobias Schneider | |
* This script is freely distributable under the terms of the MIT license. | |
*/ | |
(function(){ | |
var UPC_SET = { | |
"3211": '0', | |
"2221": '1', | |
"2122": '2', |
<?php | |
namespace Renoir\AggregationBundle; | |
/** | |
* Abstract client to use for each Client | |
* | |
* Example location: src/Renoir/AggregationBundle/AbstractClient.php | |
**/ |