BlogHide Resteemskachangred (25)in exploit • 6 years agoDelegate Call ExploitDelegateCall is one of the first dApps to be built on its own dAppChain ( Loom Network ), and it functions similarly to Steemit. It is essentially a decentralized version of StackOverflow, and…kachangred (25)in python • 6 years agoBuild a Blockchain in Python, Part 3: Mining Rewards and Transaction IntegrationWelcome! Today, we're going to implement some other features of mining and integrate transactions into our blockchain. If you look back at the code from the first article, you can see that the…kachangred (25)in programming • 6 years agoBuilding a Blockchain in Python, Part 2: Transactions and KeysTransactions are the information contained in blocks that are digitally signed by the sender of the coins, so that anyone can verify that own those coins, and have the right to spend them.…kachangred (25)in etherscan • 7 years agoWhat Etherscan Comments Tell Us About Crypto AdoptionSometimes, when I'm bored, or waiting for the bus, I hop on to Etherscan and look at new contracts or just follow the money. One thing that always gets me though is the comment section.…kachangred (25)in blockchain • 7 years agoBuilding a Blockchain in Python, Part 1 : Blocks and BlockchainWelcome! As an exercise in visualizing the underlying concepts of blockchain behind cryptocurrency, we're going to build a simple blockchain in Python. Let's start off by defining a block: from…kachangred (25)in python • 7 years agoGenerating Markov Chains from SubredditsWelcome back! Today, I made a simple tool with PRAW and Markov chains, similar to the one I made with the Bitcoin whitepaper . Markov chains are mathematical systems that predict the next…kachangred (25)in bitcoin • 7 years agoGenerate your Own Vanity Addresses for Ethereum and Bitcoin in PythonHello! Today, we're going to be writing a really simple python script to generate vanity addresses, which are cryptocurrency addresses that start with a certain phrase or sequence of letters. The…kachangred (25)in airdrop • 7 years ago//kachangred (25)in markov • 7 years agoSimulating Satoshi - Markov Chain with Bitcoin WhitepaperWelcome! Today, we're going to play around with Markov chains , which are mathematical systems that predict the next "state" based on the current "state". I created a basic Markov chain…