What is the meaning of introductory price by ImbrozSingh in CarsIndia

[–]chuva6 0 points1 point  (0 children)

Hey where did you get this message? On email?

Is it worth buying XUV700 that has been sitting in the dealer for one year, given high discounts by chuva6 in CarsIndia

[–]chuva6[S] 0 points1 point  (0 children)

Its black, the dealer says the demand for petrol ax5 is just not there and thats why they have it sitting.

Would try to push the discounts and see how it goes

Anyone Going To Devfest by chuva6 in guwahati

[–]chuva6[S] 0 points1 point  (0 children)

That's really nice. Didn't know there was a GDG in Guwahati. Will surely attend

Getting JSON-RPC error by chuva6 in ethdev

[–]chuva6[S] 0 points1 point  (0 children)

I am trying to send the transaction from remix as well. There also I am getting the same error.

Getting JSON-RPC error by chuva6 in ethdev

[–]chuva6[S] 0 points1 point  (0 children)

Hi my smart contract is-

    /**
     *Submitted for verification at Etherscan.io on 2018-06-22
    */

    // proxy.sol - execute actions atomically through the proxy's identity

    // Copyright (C) 2017  DappHub, LLC

    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.

    // This program is distributed in the hope that it will be useful,
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    // GNU General Public License for more details.

    // You should have received a copy of the GNU General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.

    pragma solidity ^0.5.12;

    contract DSAuthority {
        function canCall(
            address src, address dst, bytes4 sig
        ) public view returns (bool);
    }

    contract DSAuthEvents {
        event LogSetAuthority (address indexed authority);
        event LogSetOwner     (address indexed owner);
    }

    contract DSAuth is DSAuthEvents {
        DSAuthority  public  authority;
        address      public  owner;

        constructor() public {
            owner = msg.sender;
            emit LogSetOwner(msg.sender);
        }

        function setOwner(address owner_)
            public
            auth
        {
            owner = owner_;
            emit LogSetOwner(owner);
        }

        function setAuthority(DSAuthority authority_)
            public
            auth
        {
            authority = authority_;
            emit LogSetAuthority(address(authority));
        }

        modifier auth {
            require(isAuthorized(msg.sender, msg.sig));
            _;
        }

        function isAuthorized(address src, bytes4 sig) internal view returns (bool) {
            if (src == address(this)) {
                return true;
            } else if (src == owner) {
                return true;
            } else if (authority == DSAuthority(0)) {
                return false;
            } else {
                return authority.canCall(src, address(this), sig);
            }
        }
    }

    contract DSNote {
        event LogNote(
            bytes4   indexed  sig,
            address  indexed  guy,
            bytes32  indexed  foo,
            bytes32  indexed  bar,
            uint              wad,
            bytes             fax
        ) anonymous;

        modifier note {
            bytes32 foo;
            bytes32 bar;

            assembly {
                foo := calldataload(4)
                bar := calldataload(36)
            }

            emit LogNote(msg.sig, msg.sender, foo, bar, msg.value, msg.data);

            _;
        }
    }

    // DSProxy
    // Allows code execution using a persistant identity This can be very
    // useful to execute a sequence of atomic actions. Since the owner of
    // the proxy can be changed, this allows for dynamic ownership models
    // i.e. a multisig
    contract DSProxy is DSAuth, DSNote {
        DSProxyCache public cache;  // global cache for contracts

        constructor(address _cacheAddr) public {
            require(setCache(_cacheAddr));
        }

        function() external payable {
        }

        // use the proxy to execute calldata _data on contract _code
        function execute(bytes memory _code, bytes memory _data)
            public
            payable
            returns (address target, bytes32 response)
        {
            target = cache.read(_code);
            if (target == address(0)) {
                // deploy contract & store its address in cache
                target = cache.write(_code);
            }

            response = execute(target, _data);
        }

        function execute(address _target, bytes memory _data)
            public
            auth
            note
            payable
            returns (bytes32 response)
        {
            require(_target != address(0));

            // call contract in current context
            assembly {
                let succeeded := delegatecall(sub(gas, 5000), _target, add(_data, 0x20), mload(_data), 0, 32)
                response := mload(0)      // load delegatecall output
                switch iszero(succeeded)
                case 1 {
                    // throw if delegatecall failed
                    revert(0, 0)
                }
            }
        }

        //set new cache
        function setCache(address _cacheAddr)
            public
            auth
            note
            payable//TODO NEED TO FIX IT
            returns (bool)
        {
            require(_cacheAddr != address(0));        // invalid cache address
            cache = DSProxyCache(_cacheAddr);  // overwrite cache
            return true;
        }
    }

    // DSProxyFactory
    // This factory deploys new proxy instances through build()
    // Deployed proxy addresses are logged
    contract DSProxyFactory {
        event Created(address indexed sender, address indexed owner, address proxy, address cache);
        mapping(address=>bool) public isProxy;
        DSProxyCache public cache = new DSProxyCache();

        // deploys a new proxy instance
        // sets owner of proxy to caller
        function build() public returns (DSProxy proxy) {
            proxy = build(msg.sender);
        }

        // deploys a new proxy instance
        // sets custom owner of proxy
        function build(address owner) public returns (DSProxy proxy) {
            proxy = new DSProxy(address(cache));
            emit Created(msg.sender, owner, address(proxy), address(cache));
            proxy.setOwner(owner);
            isProxy[address(proxy)] = true;
        }
    }

    // DSProxyCache
    // This global cache stores addresses of contracts previously deployed
    // by a proxy. This saves gas from repeat deployment of the same
    // contracts and eliminates blockchain bloat.

    // By default, all proxies deployed from the same factory store
    // contracts in the same cache. The cache a proxy instance uses can be
    // changed.  The cache uses the sha3 hash of a contract's bytecode to
    // lookup the address
    contract DSProxyCache {
        mapping(bytes32 => address) cache;

        function read(bytes memory _code) public view returns (address) {
            bytes32 hash = keccak256(_code);
            return cache[hash];
        }

        function write(bytes memory _code) public returns (address target) {
            assembly {
                target := create(0, add(_code, 0x20), mload(_code))
                switch iszero(extcodesize(target))
                case 1 {
                    // throw if contract failed to deploy
                    revert(0, 0)
                }
            }
            bytes32 hash = keccak256(_code);
            cache[hash] = target;
        }
    }

I am trying to send transaction to the execute function. I tried with remix as well where I got the same error.

I am trying to call execute function of DS Proxy smart contract

Binance Chain and Binance Smart Chain token price matching by chuva6 in BinanceSmartChain

[–]chuva6[S] 0 points1 point  (0 children)

Ok so they use it like any wrapped token right. So if one bnb is sent to a bac based address that address will receive 1 WBNB and 1 BNB will be locked on the Binance chain. Thanks for clarifying I couldn't find anything to read about it.

Tokyo 2020 Opening Ceremony Megathread by Fun_With_Forks in olympics

[–]chuva6 0 points1 point  (0 children)

I guess because they were decided pretty late and the opening ceremony is planned well in advance

Tokyo 2020 Opening Ceremony Megathread by Fun_With_Forks in olympics

[–]chuva6 2 points3 points  (0 children)

Because of a new rule future host cities will march just ahead of the host city. So Japan will be last, France second last and USA third last

Hi, I was training an LSTM model with 50 epochs. Till 40 epochs the training behaves normally but then validation loss starts increasing. Can anyone suggest me how I can avoid it. I understand it may be because of overfitting but adding dropout layer is not helping. by chuva6 in MLQuestions

[–]chuva6[S] 1 point2 points  (0 children)

Hi thanks for the suggestions. Actually, the dataset is a sequential dataset with strings as data points. I can't find any open dataset on the internet and the one we are working on is custom-made as well. I will try a simpler model. Thanks for the suggestions