These are a collection of articles that I have read and summarized for future reference.
Created
June 19, 2016 02:09
-
-
Save acmiyaguchi/4f58f68cc5ae601fa99e23fffce050e8 to your computer and use it in GitHub Desktop.
Article Summaries
Overview for Bayesian Methods for Hackers
This is an open sourced book that is meant to bridge the gap between theory and practice, putting computational methods before the math. The book guides the reader through some interesting examples, such as A/B testing and detecting changes in behavior. The material is presented using Jupyter notebooks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simple Contracts are Better
The distributed smart contract network DAO, a pool of money governed by code, was exploited to withdraw 50 million dollars. This is an inherent flaw of the system due to complexity. The author proposes that smart contracts execute code off of the blockchain in order to reduce future surface area for new attacks. These new contracts will need to be simple and upgradable.
Discussion