- Build a secure coinflip betting game between two players on Ethereum.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# JSON Resume | |
[JSON Resume] is an easy way to produce an adaptible and professional-looking resume. We recommend that you use it. It'll save you a lot of headaches about formatting, file types, and the like. Plus, it'll make you look like you know how to Internet. | |
This is what the underlying format looks like: | |
``` | |
{ | |
"basics": { | |
"name": "John Doe", | |
"label": "Programmer", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'faraday' | |
class PasswordCracker | |
ALPHABET = (('a'..'z').to_a + ('0'..'9').to_a).shuffle | |
SUBJECT = 'password' | |
def initialize(api) | |
@api = api | |
@password = '' | |
end |
-
Karl: A lot of recent progress in Plasma Cash.
-
Vitalik: Ethereum core has basically had most of the hard problems essentially solved. Only a few details that need to be hammered out—more efficient Merkleization, how to rotate validator sets, etc.
-
Joseph: how to coordinate inter-chain communication? How to coordinate faucets, airdrops, to enable different kinds of social coordination.
- Proofs of computational integrity
- Game between prover and verifier
- Prover knows an input to a
F(x)
that would make it returny
- Prover could trivially prove this by providing
x
- This convinces the verifier for sure!
- Being able to convince the verifier of a true claim is the property of completeness
- Alice's device, containing her private key, is a single point of failure
- Instead of having a single device store your key material...
- You can split it into multiple devices
- Designed your address as protected by multiple keys
- Blockchain is becoming a big deal.
- Every finance company is developing a "blockchain strategy."
- $5B invested in startups, $10B invested in ICOs.
- Big gap between what's been sold to users, and what current technology is capable of.
- Doesn't scale to being a payment system.
- What about a store of value?
- There's been a lot of discussion and fear about China's involvement with Bitcoin. We wanted to provide more rigor to the discussion.
- Note: will refer to "China" often—primarily referring to a small number of policymaking groups in China who have the power to affect Bitcoin policy.
- China challenges Bitcoin's fundamental security
- Assumption: no party can amass too much power over the consensus process.
OlderNewer