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
# Attempts to demangle all mangled symbols in the current program using the Rust | |
# mangling schemes, and replace the default symbol and function signature | |
# (if applicable) with the demangled symbol. | |
# | |
# License: MIT OR Apache-2.0 | |
#@author Jack Grigg <[email protected]> | |
#@category Symbol | |
import string |
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
#!/usr/bin/env node | |
import commander from 'commander'; | |
import StatsdClient from 'statsd-client' | |
import { concurrentMap } from '@celo/utils/lib/async' | |
import { Validator } from '@celo/contractkit/lib/wrappers/Validators'; | |
import { bitIsSet, parseBlockExtraData } from '@celo/utils/lib/istanbul' | |
import { cleanupName } from './stats-utils'; | |
import BigNumber from 'bignumber.js'; |
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
#!/bin/bash | |
# curl https://gist.githubusercontent.com/nategraf/1fe3bcfeca76042abb5eef9a9cfcc9c2/raw/f497a81610d50719353e1025922f76d4d0f6ed38/install-docker.sh | sudo bash | |
function confirm () { | |
while true; do | |
read -p "Does this look right?" yn | |
case $yn in | |
[Yy]* ) make install; break;; | |
[Nn]* ) exit;; | |
* ) echo "Please answer yes or no.";; |