- Healthy Open Source
- explicit goal to be a lightweight process
- concrete ability to scale to hundreds of contributors
- good fundamental goals
- transparency
- participation
- efficacy
- ecosystem projects encouraged but not required to adopt foundation governance templates
- creation of projects under TSC explicity delegates authority from TSC to project TC
This file contains hidden or 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
use anyhow::anyhow; | |
use anyhow::Result; | |
use std::mem::swap; | |
type Child = Option<Box<Node>>; | |
#[derive(Debug, Eq, PartialOrd, PartialEq, Clone)] | |
pub struct Node { | |
pub value: i32, |
This file contains hidden or 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
package log | |
import ( | |
"fmt" | |
"io" | |
stdlog "log" | |
"strings" | |
) | |
type stdlibLogger struct { |
-
An evil proposer can drop valid transactions (tendermint/tendermint#3322). To ensure tx A will be committed, the client needs to a) send it to multiple nodes b) subscribe for its result https://tendermint.com/docs/app-dev/subscribing-to-events-via-websocket.html or query the result later using
/tx
API endpoint (requires the tx indexer enabled) https://tendermint.com/rpc/#tx. -
Multiple nodes above requirement comes from a simple fact that an evil node can drop your tx.
This file contains hidden or 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
package main | |
import ( | |
"context" | |
"os" | |
"os/signal" | |
"syscall" | |
"github.com/tendermint/tendermint/libs/log" |
This file contains hidden or 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
package db | |
import ( | |
"bufio" | |
"io" | |
"os" | |
"sync" | |
"github.com/dgraph-io/badger" | |
) |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
""" | |
This script requires the following Packages | |
1: Twitter: https://pypi.python.org/pypi/twitter | |
2: PyQuery: https://pypi.python.org/pypi/pyquery | |
3: Jinja2: https://pypi.python.org/pypi/Jinja2 | |
It's fairly primitive but works. It uses a Jinja2 template to create an OPML | |
file from the RSS feeds of the websites run by the people you follow on |
This file contains hidden or 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
--- | |
- hosts: all | |
tasks: | |
- name: get version | |
shell: tendermint version | |
register: version | |
- name: copy and unpack binary if newer version is being installed |
This file contains hidden or 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
[Unit] | |
Description=Counter | |
Requires=network-online.target | |
After=network-online.target | |
[Service] | |
Environment="" | |
Restart=on-failure | |
User={{ user }} | |
Group={{ group }} |
This file contains hidden or 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
// addOrMax performs safe addition: if result overflows, it returns MaxUint64 | |
func addOrMax(accum, value uint64) uint64 { | |
if (accum + value) < accum { | |
return math.MaxUint64 | |
} else { | |
return accum + value | |
} | |
} | |
// subOrZero performs safe subtraction: if result underflows, it returns 0 |
NewerOlder