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
| static byte[] voo(TProtocolFactory factory, byte[] serverResponse) throws TException { | |
| TProtocol inputProtocol = factory.getProtocol(new TMemoryInputTransport(serverResponse)); | |
| // Setup output buffer | |
| TMemoryBuffer outBuffer = new TMemoryBuffer(16); | |
| TProtocol outputProtocol = factory.getProtocol(outBuffer); | |
| // Start | |
| TMessage message = inputProtocol.readMessageBegin(); | |
| outputProtocol.writeMessageBegin(message); |
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
| pragma solidity ^0.4.24; | |
| contract ERC20Interface { | |
| function totalSupply() public constant returns (uint); | |
| function balanceOf(address tokenOwner) public constant returns (uint balance); | |
| function transfer(address to, uint tokens) public returns (bool success); | |
| function transferFrom(address from, address to, uint tokens) public returns (bool success); | |
| function approve(address spender, uint tokens) public returns (bool success); | |
| function allowance(address tokenOwner, address spender) public constant returns (uint remaining); |
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
| pragma solidity ^0.4.13; | |
| contract Ownable { | |
| address public owner; | |
| constructor (address _address) public { | |
| owner = _address; | |
| } | |
| modifier isOwner { |
$ find ./ -type f -print | xargs grep 'hoge'
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
| * [Quiver](http://happenapps.com/) | |
| ↓ | |
| * [Ulysses](https://ulyssesapp.com/) | |
| ↓ | |
| * [Boostnote](https://boostnote.io/) |
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
| sudo apt-get install python3-pip | |
| pip3 install docopt gmusicapi-wrapper | |
| wget https://raw.githubusercontent.com/thebigmunch/gmusicapi-scripts/master/gmusicapi_scripts/gmupload.py | |
| sudo mv gmupload.py /usr/bin/gmupload | |
| sudo chmod +x /usr/bin/gmupload |
https://forum.pine64.org/showthread.php?tid=5319
ethtool -K eth0 tx off