Skip to content
View stablexbt's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report stablexbt

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. eos_get_balance.cpp eos_get_balance.cpp
    1
      asset token::get_balance( account_name owner, symbol_name sym )const
    2
       {
    3
          accounts accountstable( _self, owner );
    4
          const auto& ac = accountstable.get( sym );
    5
          return ac.balance;
  2. rest_s3.py rest_s3.py
    1
    @app.route('/file', methods=["POST"])
    2
    def upload_file():
    3
        if "user_file" not in request.files:
    4
            return "No user_file key in request.files"
    5
        file    = request.files["user_file"]
  3. irc2.py irc2.py
    1
    from iconservice import *
    2
    
                  
    3
    TAG = 'SampleToken'
    4
    
                  
    5
    
                  
  4. s3_send.py s3_send.py
    1
    def upload_to_aws_s3(file):
    2
        s3.upload_fileobj(
    3
            file,
    4
            S3_BUCKET,
    5
            file.filename,
  5. tbears_enter.sh tbears_enter.sh
    1
    $ docker container start -a local-tbears
    2
    root@8cfa3f87b3c4:/tbears#
  6. ether-poe.sol ether-poe.sol
    1
    pragma solidity ^0.4.20;
    2
    
                  
    3
    contract poe {
    4
        mapping(string => uint) proof;
    5
        event Exists(string data, uint blockNumber);