I hereby claim:
- I am ferittuncer on github.
- I am ferit (https://keybase.io/ferit) on keybase.
- I have a public key ASC3gRctSVMYQgPPXZpu4i8oKeZndYvKGW-5DAVxtDNcMwo
To claim this, I am signing this object:
sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev libpq-dev nodejs | |
sudo apt-get install ruby-full | |
gem install rails |
#!/bin/bash | |
for rev in $(git rev-list --reverse origin/master..HEAD); | |
do | |
git push -f origin ${rev}:master | |
done |
I hereby claim:
To claim this, I am signing this object:
pragma solidity >=0.4.22 <0.6.0; | |
contract Ballot { | |
struct Voter { | |
uint weight; | |
bool voted; | |
uint8 vote; | |
address delegate; | |
} | |
struct Proposal { |
Atom Settings |
Todo |
Variable appeal period to avoid unnecessary waiting time on crowdfunding.
Removing ruling options from a dispute, useful for disputes with more than two parties.
Let parties to agree on draw.
Different quorum options for arbitration, instead of only majority.
It's not fair for jurors or crowdfunders when new evidence if submitted to the case. This should be addresses in some way.
Don't select non-semantic elements, such as div and span.
Avoid conditional styling based of location. If you are changing the look of a module for usage elsewhere on the page or site, sub-class the module instead.
USER=userOrOrganizationName | |
REPO=reponame | |
AUTHORIZATION_TOKEN=authorization-token | |
#List labels | |
# curl -H "Authorization: token $AUTHORIZATION_TOKEN" "https://api.github.com/repos/$USER/$REPO/labels" | jq -r '.[].name' | |
# Delete labels | |
curl -H "Authorization: token $AUTHORIZATION_TOKEN" "https://api.github.com/repos/$USER/$REPO/labels" | jq -r '.[].name' |jq -Rr @uri | while read name ; do | |
# echo ${name} |
/** | |
* @authors: [@mtsalenc] | |
* @reviewers: [@clesaege] | |
* @auditors: [] | |
* @bounties: [] | |
* @deployments: [] | |
*/ | |
pragma solidity ^0.4.24; |