Contract | Address |
---|---|
AddressProvider | 0x139c15e21b0f6e43Fc397faCe5De5b7D5ae6874a |
ChainlinkOracleProvider | 0x275bB4476eBe0f1d6847bE66C8b00129fB71Ea5c |
Controller | 0xf88864B5D747961EB1CAf88d395D13aCa8274C9F |
PoolFactory | 0x0B6A5F2EBc5e1BD38a4ec6a90844F45901E5B843 |
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
"""Creates a contract from the raw bytecode | |
Requires web3py to be installed | |
``` | |
pip install web3 | |
``` | |
usage: python create_contract.py [-a ACCOUNT] [-v VALUE] [--ipc-path IPC_PATH] contract | |
""" |
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
id | type | metaType | count | value | |
---|---|---|---|---|---|
0 | SimpleName | Other | 97312691 | ||
1 | NameExpr | Expr | 68713314 | ||
2 | MethodCallExpr | Expr | 42016872 | ||
3 | ClassOrInterfaceType | Type | 41234004 | ||
4 | ExpressionStmt | Stmt | 31012516 | ||
5 | Name | Other | 23675783 | ||
6 | BlockStmt | Stmt | 16994828 | ||
7 | VariableDeclarator | Other | 14001828 | ||
8 | VariableDeclarationExpr | Expr | 10163270 |
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
vim | |
networkmanager | |
xorg-server | |
xorg | |
xmonad | |
xmonad-contrib | |
xmobar | |
intel-ucode | |
pkgfile | |
git |
I hereby claim:
- I am danhper on github.
- I am tuvistavie (https://keybase.io/tuvistavie) on keybase.
- I have a public key ASCusmLiJUiU4smze78NA5NRBc5LqbkSFPpLHGh_miQC8Ao
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
diff -ura mozc.orig/src/prediction/zero_query_dict.h mozc/src/prediction/zero_query_dict.h | |
--- mozc.orig/src/prediction/zero_query_dict.h 2018-05-27 12:14:39.000000000 +0200 | |
+++ mozc/src/prediction/zero_query_dict.h 2018-05-27 12:16:53.158743824 +0200 | |
@@ -132,6 +132,17 @@ | |
return tmp; | |
} | |
+ iterator &operator--() { | |
+ ptr_ -= kTokenByteSize; | |
+ return *this; |
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
(**************************************************************************) | |
(* Sample usage of OCaml parmap library *) | |
(* https://github.com/rdicosmo/parmap *) | |
(* *) | |
(* Computes pi using a simple approximation *) | |
(* \frac{\pi}{4} = \sum_{n=0}^{\infty} \frac{(-1)^n}{2n + 1} *) | |
(* *) | |
(* Compile with the following command: *) | |
(* ocamlfind ocamlopt -linkpkg -package parmap parmap_sample.ml *) | |
(**************************************************************************) |
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
{{redirect|UK}} | |
{{基礎情報 国 | |
|略名 = イギリス | |
|日本語国名 = グレートブリテン及び北アイルランド連合王国 | |
|公式国名 = {{lang|en|United Kingdom of Great Britain and Northern Ireland}}<ref>英語以外での正式国名:<br/> | |
*{{lang|gd|An Rìoghachd Aonaichte na Breatainn Mhòr agus Eirinn mu Thuath}}([[スコットランド・ゲール語]])<br/> | |
*{{lang|cy|Teyrnas Gyfunol Prydain Fawr a Gogledd Iwerddon}}([[ウェールズ語]])<br/> | |
*{{lang|ga|Ríocht Aontaithe na Breataine Móire agus Tuaisceart na hÉireann}}([[アイルランド語]])<br/> | |
*{{lang|kw|An Rywvaneth Unys a Vreten Veur hag Iwerdhon Glédh}}([[コーンウォール語]])<br/> | |
*{{lang|sco|Unitit Kinrick o Great Breetain an Northren Ireland}}([[スコットランド語]])<br/> |
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
#include <complex> | |
#include <iostream> | |
#include <boost/typeof/std/complex.hpp> | |
#include <boost/units/systems/si/energy.hpp> | |
#include <boost/units/systems/si/force.hpp> | |
#include <boost/units/systems/si/length.hpp> | |
#include <boost/units/systems/si/electric_potential.hpp> | |
#include <boost/units/systems/si/current.hpp> |
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
from fabric.api import run, env, cd | |
env.hosts = ['host1', 'host2'] | |
def deploy(): | |
with cd("~/my-project"): | |
run("git fetch") | |
run("git checkout --force origin/master") | |
run("make setup") | |
run("make restart_app") |
NewerOlder