This gist's comment stream is a collection of webdev apps for OS X. Feel free to add links to apps you like, just make sure you add some context to what it does — either from the creator's website or your own thoughts.
— Erik
I use the first | |
—– BEGIN LICENSE —– | |
Michael Barnes | |
Single User License | |
EA7E-821385 | |
8A353C41 872A0D5C DF9B2950 AFF6F667 | |
C458EA6D 8EA3C286 98D1D650 131A97AB | |
AA919AEC EF20E143 B361B1E7 4C8B7F04 |
pragma solidity ^0.5.0; | |
contract Token { | |
string public name = "DApp Token"; | |
string public symbol = "DAPP"; | |
uint256 public totalSupply = 1000000000000000000000000; // 1 million tokens | |
uint8 public decimals = 18; | |
event Transfer( | |
address indexed _from, |