I hereby claim:
- I am warchant on github.
- I am warchant (https://keybase.io/warchant) on keybase.
- I have a public key ASBAj-kT6q5IV52ZHpMWnPjOoq5RTC6_ETUmRvmTahbhQgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| package jp.co.soramitsu.iroha.testcontainers; | |
| import iroha.protocol.TransactionOuterClass; | |
| import java.io.FileNotFoundException; | |
| import java.io.PrintWriter; | |
| import java.util.Collections; | |
| import java.util.LinkedList; | |
| import java.util.List; | |
| import java.util.stream.Collectors; | |
| import java.util.stream.IntStream; |
| CREATE OR REPLACE FUNCTION | |
| get_detail_text_google(item_id integer) | |
| RETURNS TEXT AS | |
| $$ | |
| declare | |
| _ret TEXT; | |
| _art TEXT; | |
| _brand TEXT; | |
| _country TEXT; | |
| _har TEXT; |
http://sudhaker.com/6/install-the-latest-kubernetes-on-centos-7-1 https://edenmal.moe/post/2017/GitLab-Kubernetes-Perfect-Match-for-Continuous-Delivery-with-Container/#step-2-get-serviceaccount-token-from-kubernetes
Install helm with security: https://medium.com/google-cloud/install-secure-helm-in-gke-254d520061f7
kubectl apply --filename https://git.io/weave-kube-1.6
kubectl create namespace satra-db
| // Copyright Oliver Kowalke, Nat Goodspeed 2015. | |
| // Distributed under the Boost Software License, Version 1.0. | |
| // (See accompanying file LICENSE_1_0.txt or copy at | |
| // http://www.boost.org/LICENSE_1_0.txt) | |
| #ifndef BOOST_FIBERS_ASIO_DETAIL_YIELD_HPP | |
| #define BOOST_FIBERS_ASIO_DETAIL_YIELD_HPP | |
| #define BOOST_ASIO_NO_DEPRECATED |
| { | |
| "compilerOptions": { | |
| /* Basic Options */ | |
| "incremental": true /* Enable incremental compilation */, | |
| "target": "ESNEXT" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */, | |
| "module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */, | |
| // "lib": [], /* Specify library files to be included in the compilation. */ | |
| // "allowJs": true, /* Allow javascript files to be compiled. */ | |
| // "checkJs": true, /* Report errors in .js files. */ | |
| // "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */ |
| #ifndef __SLICE__HPP__ | |
| #define __SLICE__HPP__ | |
| #include <cstddef> | |
| #include <iterator> | |
| #include <type_traits> | |
| #include <vector> | |
| /// Non-owning contiguous array. Similar to gsl::span. Essentially, just a pair | |
| /// T* + size_t |
| #!/usr/bin/env python3 | |
| import requests | |
| from requests.auth import HTTPBasicAuth | |
| import random | |
| class BtcApi: | |
| def __init__(self): | |
| self.apiurl = 'http://127.0.0.1:12001' | |
| self.user = 'user1' |