Skip to content

Instantly share code, notes, and snippets.

View albertahn's full-sized avatar
🎃
Focusing

StoryChat.app albertahn

🎃
Focusing
View GitHub Profile
@albertahn
albertahn / CountryCodes.json
Created March 23, 2023 09:23 — forked from anubhavshrimal/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"
@albertahn
albertahn / DappToken.sol
Created May 17, 2021 07:22 — forked from gwmccubbin/DappToken.sol
DApp ERC-20 Token
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,