I hereby claim:
- I am densmirnov on github.
- I am densmirnov (https://keybase.io/densmirnov) on keybase.
- I have a public key whose fingerprint is B833 F791 BC1B 6111 8B4B 0CE9 AB6F 0B3A 0924 B748
To claim this, I am signing this object:
#!/bin/bash | |
# Sync Homebrew installations via Microsoft OneDrive | |
# | |
# Colored Output | |
b='\033[1;34m' # Blue | |
w='\033[1;30m' # White | |
c='\033[0m' # No Color |
# read more at https://terrty.net/2014/ssl-tls-in-nginx/ | |
# latest version on https://gist.github.com/paskal/628882bee1948ef126dd/126e4d1daeb5244aacbbd847c5247c2e293f6adf | |
# security test score: https://www.ssllabs.com/ssltest/analyze.html?d=terrty.net | |
# your nginx version might not have all directives included, test this configuration before using in production against your nginx: | |
# $ nginx -c /etc/nginx/nginx.conf -t | |
server { | |
# public key, contains your public key and class 1 certificate, to create: | |
# (example for startssl) | |
# $ (cat example.com.pem & wget -O - https://www.startssl.com/certs/class1/sha2/pem/sub.class1.server.sha2.ca.pem) | tee -a /etc/nginx/ssl/domain.pem > /dev/null |
Verifying that +densmirnov is my blockchain ID. https://onename.com/densmirnov |
sudo yum install libmpc-devel mpfr-devel gmp-devel | |
cd ~/Downloads | |
curl ftp://ftp.mirrorservice.org/sites/sourceware.org/pub/gcc/releases/gcc-4.9.2/gcc-4.9.2.tar.bz2 -O | |
tar xvfj gcc-4.9.2.tar.bz2 | |
cd gcc-4.9.2 | |
./configure --disable-multilib --enable-languages=c,c++ | |
make -j 4 | |
make install |
Publicly linking my bitmark account / https://economy.bitmark.com/account/e6qNyaJSQ5G2HyGunCJh2AzhUTnyhDRG1h8Nbyuy8LNDKyhBcS/a2b0e53670f6cfcde0a4f01a9397045470a4c6a0cfe873cb3903cb59a8d533f03d16d9015109b655f6d5d5df73d7d6cf6a5ee746ecd0ef952048fff4a32d740b |
I hereby claim:
To claim this, I am signing this object:
apps: | |
- script : ./gunbot.js | |
name : 'BTC_ETH' | |
args : 'BTC_ETH' | |
out_file : 'logs/ETH.log' | |
- script : ./gunbot.js | |
name : 'BTC_XMR' | |
args : 'BTC_XMR' | |
out_file : 'logs/XMR.log' | |
- script : ./gunbot.js |
Verifying that "18h3PUoictfxhwNsehVSnLwhdCQnvF4H8E.id" is my Blockstack ID. https://onename.com/18h3PUoictfxhwNsehVSnLwhdCQnvF4H8E |
///////////////////////// | |
//Section 1: Coin Value// | |
///////////////////////// | |
//////////////////////////////////////////////////////////////////////////////////////////////// | |
//coin market value lookup (works for all coins, just pass a single coin symbol as a parameter) | |
function getCoinPriceBySymbol(symbol) { | |
var url = 'https://api.coinmarketcap.com/v1/ticker/'; | |
var response = UrlFetchApp.fetch(url); | |
var json = JSON.parse(response.getContentText()); |
#!/bin/bash | |
export ARCH FOLDER GUNTHY PM2 | |
ARCH=$(uname -m) | |
if [[ "$OSTYPE" == "linux-gnu" && "$ARCH" == "x86_64" ]]; then | |
GUNTHY="gunthy-linuxx64" | |
elif [[ "$OSTYPE" == "linux-gnu" && "$ARCH" == "i686" ]]; then | |
GUNTHY="gunthy-linuxx86" | |
elif [[ "$OSTYPE" == "darwin"* ]]; then | |
GUNTHY="gunthy-macos" |