-
目的 Plasmaの論文で触れられていた2階層以上のPlasmaチェーンについて、本当に意味はあるのか、攻撃方法はあるのか、実装はどうすればいいのかなどを考え実際に実装してみる。
-
通常のEthereumはチューリング完全にワールドステートを変更する必要があり、そのためユーザーが好きにコードを書け自由に動かせる。
-
これから作るPlasmaチェーンにはVMはいらない。送金の機能と、下位チェーンからのSubbmit block、exit、depositだけ組み込めればいい。
-
Plasma MVPが上位チェーンにしている機能をほぼそのまま実装する。ただ検証や状態変移関数はスマートコントラクトではなくクライント組み込み。 こうすることで、2階層以上のブロックチェーンの実装が非常に簡単になる。
-
Plasma MVPで組み込みPlasmaコントラクトを実装するために一番楽な方法
- 2 way pegのやり方を真似するのが楽そう
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
| { | |
| "word_count": 44626, | |
| "processed_language": "ja", | |
| "personality": [ | |
| { | |
| "trait_id": "big5_openness", | |
| "name": "知的好奇心", | |
| "category": "personality", | |
| "percentile": 0.9319734429513193, | |
| "significant": true, |
I hereby claim:
- I am onokatio on github.
- I am onokatio_ (https://keybase.io/onokatio_) on keybase.
- I have a public key whose fingerprint is 6EA9 974F 9C2F 0310 6BDE 84F6 160D 8704 EFA2 F6D0
To claim this, I am signing this object:
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
| diff --git a/PKGBUILD b/PKGBUILD | |
| index f9f2bf3..2a71d42 100644 | |
| --- a/PKGBUILD | |
| +++ b/PKGBUILD | |
| @@ -30,12 +30,9 @@ source=( | |
| japanese_usage_dictionary::git+https://github.com/hiroyuki-komatsu/japanese-usage-dictionary.git#commit=${_japanese_usage_dictionary_rev} | |
| fix-build-with-gcc8.patch::https://salsa.debian.org/debian/mozc/raw/master/debian/patches/Fix-build-with-gcc8.patch | |
| mozc-2.23.2815.102-python-3.patch::https://github.com/google/mozc/files/4048079/mozc-2.23.2815.102-python-3.patch.txt | |
| - add_support_new_japanese_era_for_mozc.patch | |
| - add_support_new_japanese_era_for_ut2.patch |
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
| #include <stdio.h> | |
| #include <math.h> | |
| int calc(int i,int j,int k){ | |
| return pow(2,i) * pow(3,j) * pow(5,k); | |
| } | |
| int main(void){ | |
| int count = 0; | |
| int amari; |
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
| 38.27.106.27 wasabisys.com | |
| 76.191.80.18 s3.us-west-1.wasabisys.com | |
| 18.212.96.210 console.wasabisys.com | |
| 18.212.96.210 iam.wasabisys.com | |
| 38.27.106.27 s3.wasabisys.com | |
| 18.212.96.210 billing-service.wasabisys.com |
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
| { | |
| "keywords": [ | |
| { | |
| "scope": 1610612481, | |
| "source": -1, | |
| "user_key": null, | |
| "value": "#ニコニコ動画" | |
| }, | |
| { | |
| "scope": 1610612481, |
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
| *://*.366service.com/* | |
| *://*.alwaysemmyhope.com/* | |
| *://*.answer-id.com/* | |
| *://*.askdev.info/* | |
| *://*.base64.work/* | |
| *://*.code-examples.net/* | |
| *://*.coder.work/* | |
| *://*.fixes.pub/* | |
| *://*.gitmemory.com/* | |
| *://*.i-harness.com/* |
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
| // ==UserScript== | |
| // @name manaba report type | |
| // @namespace Violentmonkey Scripts | |
| // @match https://manaba.tsukuba.ac.jp/ct/home_library_query | |
| // @grant none | |
| // @version 1.0 | |
| // @author - | |
| // @description 2023/10/15 21:21:34 | |
| // ==/UserScript== |
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
| var problems_list; | |
| fetch("https://scoreserver.ictsc.net/api/problems") | |
| .then( problem_json => { return problem_json.json() } ) | |
| .then( problems => { | |
| problems_list = problems.data.problems; | |
| return problems_list.map( problem => { | |
| return "https://scoreserver.ictsc.net/api/problems/" + problem.id + "/answers" | |
| }) | |
| .map( url => { | |
| return fetch(url) |