Problems
News requires free-speech yet auto-censorship obstacles it News are public good yet there is lack of incentives for news for public interest Fake news is a problem but centralized fact-checking is another problem Intermediaries, such as news agencies, taking lions share from the revenue to the degree that it's barely feasible to a reporter to make a news. |
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
def calculate_tax(income): | |
# Calculate and deduct social security contribution first | |
social_security = income * 0.11 | |
income -= social_security | |
# Income is revenue minus expenses. | |
# In simple accounting, 75% of income is taxable (with 25% assumed as expenses). | |
# Save the original taxable income for both progressive tax and solidarity tax calculations. | |
original_taxable_income = income * 0.75 | |
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
/** | |
* @authors: [@mtsalenc] | |
* @reviewers: [@clesaege] | |
* @auditors: [] | |
* @bounties: [] | |
* @deployments: [] | |
*/ | |
pragma solidity ^0.4.24; |
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
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} |
-
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.
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.
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
Todo |
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
Atom Settings |
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
pragma solidity >=0.4.22 <0.6.0; | |
contract Ballot { | |
struct Voter { | |
uint weight; | |
bool voted; | |
uint8 vote; | |
address delegate; | |
} | |
struct Proposal { |
NewerOlder