Skip to content

Instantly share code, notes, and snippets.

View eddiejibson's full-sized avatar
:atom:
deploying to production at 4am

Edward Jibson eddiejibson

:atom:
deploying to production at 4am
View GitHub Profile

Keybase proof

I hereby claim:

  • I am eddiejibson on github.
  • I am jibson (https://keybase.io/jibson) on keybase.
  • I have a public key whose fingerprint is 2B1D 90A4 0D48 D884 A3EE D09C 8AE8 0537 FCB8 81A2

To claim this, I am signing this object:

Verifying my Blockstack ID is secured with the address 1QAHULTd9PgkfV6xyreJpFvpzUne4fY37z https://explorer.blockstack.org/address/1QAHULTd9PgkfV6xyreJpFvpzUne4fY37z
@eddiejibson
eddiejibson / ballot.sol
Created June 19, 2018 20:30
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.24+commit.e67f0147.js&optimize=false&gist=
pragma solidity ^0.4.0;
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
struct Proposal {