[CLARIFICATION NEEDED]
Babylon Validator address: bbnvaloper19fzfy82u2y8p5p6hz9zpgezgc556rjy6dnnmul
Babylon address: bbn19fzfy82u2y8p5p6hz9zpgezgc556rjy6s3exs7
I assert that the addresses provided are correct and owned by CoinSummer Labs.
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
const axios = { | |
get(url, { headers = {} }) { | |
return new Promise((resolve, reject) => { | |
const xhr = window.XMLHttpRequest | |
? new XMLHttpRequest() | |
: new ActiveXObject("Microsoft.XMLHTTP"); | |
xhr.open("get", url); | |
xhr.withCredentials = true; | |
// Object.entries(headers).forEach(([key,value]) => xhr.setRequestHeader(key, value)); |
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
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
Comment: Filecoin phase2 signing public-key | |
mQINBF8DOjoBEAD09m9+SZz7JpGOH7X8cgLKSZ+RIldt1rP9towfvmgvpoKFfiVO | |
Qw2q4Co3L8P+QEasHHBYRiYe7HWVShH0Bpaz3zm6MXCsKS0u5hhmDqI/KX15sn+u | |
S4ARkIv1pXMk4pqo/51NDqknAYEOLf06V7atL0DmwfAEVtEI1V55Iashp6Wwpaob | |
XdxKARG9ZiwdZdqaZP0rMxYV5Id4BZNmtLB1kTJCWxg7ZGo5dI0GLYnlRxVCt10I | |
45cIlqOzX9VDMAYbcV0ClWUNjQm+YstVSfVbNBA59T6MLl/UL8Ipo+QR7zViblaF | |
QP4ixW/rXhWt0TFNyR9NXyJGuQHUewtBKOzdUm3hkjmIrQEB25XLCKeXmwVIPwiT | |
nZ13rMoGnsrbAlpDpexJXeqqVIz1hq2kCKboloIcu3nB2xMbgmzS6uzemiMw2US6 |
I hereby claim:
- I am ksaynice on github.
- I am ksaynice (https://keybase.io/ksaynice) on keybase.
- I have a public key ASCq2bXgwye8KMJY2-7iSG5N7oY1upMKhQSnL-dZdEijfQo
To claim this, I am signing this object:
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
import random | |
import datetime | |
import sys | |
def calc_bomb(i): | |
subtract = 52 if i >= CNSTNTNPL_FORK_BLKNUM else 32 | |
period = i // 100000 | |
if (period > 0): | |
# Subtract 2, this is the original formula |
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
# Date, blocknum, difficulty as of 2019-01-18 | |
# Script by vbuterin, slightly modified by lrettig | |
import random | |
import datetime | |
import sys | |
def calc_bomb(i): | |
period = i // 100000 | |
if (period > 0): | |
# Subtract 2, this is the original formula |
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
require "rubygems" | |
require "tmpdir" | |
require "bundler/setup" | |
require "jekyll" | |
# Change your GitHub reponame | |
GITHUB_REPONAME = "ksaynice/some_repo_name" |
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
class PumaHelper | |
def self.refresh_connection_pool(base_klass, config_key) | |
base_klass = base_klass.constantize | |
config = Rails.application.config.database_configuration[config_key] | |
base_klass.connection_pool.disconnect! rescue ActiveRecord::ConnectionNotEstablished | |
base_klass.connection.disconnect! rescue ActiveRecord::ConnectionNotEstablished | |
base_klass.establish_connection config | |
true | |
rescue |
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
class ProcessImage | |
class ResizeCover < ProcessImage::Base | |
include Interactor | |
include MomCatalogModels::Fileable | |
GRID_W = 960 | |
GRID_H = 1200 | |
def call | |
magic_resize_cover |
NewerOlder