Skip to content

Instantly share code, notes, and snippets.

View lucasPDY's full-sized avatar
👊
Stay Lit, Use Git!

Lucas Phang lucasPDY

👊
Stay Lit, Use Git!
View GitHub Profile

Hey there Company!

I am an aspiring Software Developer from Monash University looking for opportunities to make the world a better place through technology. Currently, I am in my final year of my Computer Science Bachelor's Degree and will be graduating in July 2020.

{Some Description}

Here are the links to my LinkedIn, and GitHub: LinkedIn: https://www.linkedin.com/in/lucas-phangdeyuan/ GitHub: https://github.com/lucasPDY

@lucasPDY
lucasPDY / ballot.sol
Created February 25, 2019 16:29
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.5.1+commit.c8a2cb62.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.6.0;
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
struct Proposal {
@lucasPDY
lucasPDY / ballot.sol
Created February 25, 2019 16:29
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.5.1+commit.c8a2cb62.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.6.0;
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
struct Proposal {
@lucasPDY
lucasPDY / ballot.sol
Created February 25, 2019 16:22
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.5.1+commit.c8a2cb62.js&optimize=false&gist=
pragma solidity >=0.4.22 <0.6.0;
contract Ballot {
struct Voter {
uint weight;
bool voted;
uint8 vote;
address delegate;
}
struct Proposal {