- Hardcoded templates
- Violating 120 symbols per string
- No DRY ever
__pycache__
Parsers/__pycache__
backend/pycache
| pragma solidity ^0.4.19; | |
| contract ERC20 { | |
| string public name; | |
| string public symbol; | |
| string public website; | |
| address public base_address; | |
| address public owner_address; | |
| event Approval(address indexed tokenOwner, address indexed spender, uint tokens); |
| pragma solidity ^0.4.19; | |
| contract InnoCoin { | |
| string public constant name = "InnoCoin"; | |
| string public constant symbol = "INC"; | |
| uint8 public constant decimals = 18; | |
| event Approval(address indexed tokenOwner, address indexed spender, uint tokens); |
| pragma solidity ^0.4.8; | |
| contract Auction { | |
| // static | |
| address public owner; | |
| uint public bidIncrement; | |
| uint public startBlock; | |
| uint public endBlock; | |
| string public ipfsHash; |
| pragma solidity 0.4.24; | |
| contract Calculator { | |
| int result = 0; | |
| constructor() public { } | |
| function getResult() public view returns (int) | |
| { | |
| return result; |
| # | |
| # Common config options automatically generated by splitconfig.pl | |
| # | |
| CONFIG_104_QUAD_8=m | |
| CONFIG_60XX_WDT=m | |
| CONFIG_64BIT=y | |
| CONFIG_6LOWPAN=m | |
| # CONFIG_6LOWPAN_DEBUGFS is not set | |
| # CONFIG_6LOWPAN_GHC_EXT_HDR_DEST is not set | |
| # CONFIG_6LOWPAN_GHC_EXT_HDR_FRAG is not set |
| gistup |
| # Go to your projects' folder and clone the repo of club portal. | |
| git clone https://gitlab.com/InnoWebdev/club-portal | |
| cd club-portal | |
| # Checkout our training branch | |
| git checkout frontend/structure | |
| cd frontend | |
| # And intstall all neccessary packages (be sure that you have Node.js installed) | |
| npm install | |
| # Let's go to the very begining |