writing decentralized history, May 6th

avatar

IMG_8908.jpg

I want to tell you I have some riveting content written up for you, but I spent the better part of the day contributing to rapidly developing story I broke yesterday and the day before. I'm actively contributing to his freshly-baked hatchling of an idea because, well, that's what decentralization's all about.

Really, Rhett Mankind's story is my story. I've spent a decent amount of time struggling, fumbling about in the dark for a way to share my story. Only recently have I found a groove, and only by innovating with the tools presently available.

That's what he did, but the difference being, he built it entirely in public. In agreement with @kryptik, I'm in a lot of ways, a better expert on this tech than I was six years ago, so perhaps I cast aside the FUD and build myself. I could've done that with code today, but my preference for narratives, storytelling and people have had me build upon relationships, within a community, with a lot of attention on it at the moment.

Especially since I haven't quite finished @felixxx's book recommendation, I cannot share much, but I truly think this might be the last confluence to skyrocket my career. Exciting times.

IMG_9929.jpg

Yet another book I think with the opportunity to 10x my life.



0
0
0.000
6 comments
avatar

!LOL

0
0
0.000
avatar

Not feelin it, huh? That's okay. It is a gamble, after all. Life...

0
0
0.000
avatar
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20FlashMint.sol";

contract RandoMemeCoin is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit, ERC20FlashMint {
    constructor() ERC20("RandoMemeCoin", "DBK") ERC20Permit("RandoMemeCoin") {}

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}
0
0
0.000
avatar

This is some copy/paste level code. Learn what that all means. You can add a lot more.

0
0
0.000