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
| # ---------------------------------------------------------------------- | |
| # {TYPE}: [{SCOPE}] {SUBJECT} What? | |
| # {BODY} Why? | |
| # {FOOTER} | |
| # ---------------------------------------------------------------------- |
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
| bindkey -s '' 'source $HOME/bin/sources.sh' |
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
| // SPDX-License-Identifier: MIT | |
| pragma solidity 0.8.3; | |
| // IRC20 interface commonly usage for create new ethereum tokens. | |
| // Custom tokens running on the Ethereum virtual machine must implement this or some other interface. | |
| interface IRC20 { | |
| function totalSupply() external view returns (uint256); | |
| function balanceOf(address account) external view returns(uint256); |
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
| # Load plugins. | |
| # We don't actually need to set the one-dark theme, I've customised the vanilla | |
| # tmux configuration to my liking. If this seems to be working well then I will | |
| # later remove this line. | |
| # set -g @plugin 'odedlaz/tmux-onedark-theme' # OneDark Theme | |
| # Remap prefix to ctrl-a for screen consistency. | |
| set -g prefix C-a |
OlderNewer