並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 37 件 / 37件

新着順 人気順

Immutableの検索結果1 - 37 件 / 37件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

Immutableに関するエントリは37件あります。 techfeedprogrammingjavascript などが関連タグです。 人気エントリには 『実践Immutable Data Model - 紙箱』などがあります。
  • 実践Immutable Data Model - 紙箱

    ランキング参加中プログラミング はじめに この記事では、Immutable Data Modelと呼ばれる設計手法をもとに、リレーショナル・データベースにおける、テーブル設計の話を書いています。また、今回の実践で利用する、別の考え方の背景を理解するために、Out of the tar pitという小論文の内容にも言及します。 「状態とは何か?」というややこしい話がたくさん出てきますし、データベースのテーブル設計についての話であることから、たくさんのSQLが出てきます。なので、データモデリングとか状態管理とか、特にSQLとかに興味がない人には面白くないと思います。 そのあたりに興味ある方は、読んでみて欲しいです。 Immutable Data Modelを、実際のアプリケーションで使うデータベースに採用するにあたり、どういう考え方で、どのようにテーブルを構成したか、自分なりの経験を書いていま

      実践Immutable Data Model - 紙箱
    • Python の型システムの上で Immutable な Python プログラムを作る - 病みつきエンジニアブログ

      まえがき 今年の PyCon JP 2020 にて「Python 3.9 時代の型安全な Python の極め方」というタイトルで登壇させていただきます。本稿は、発表の補足となる「型ヒントを使って Immutable な Python を実現する方法」について紹介したものです。 Python の型ヒント Python には「型ヒント」という機能があり、型をプログラム内に宣言することができます。 age: int = 28 name: str = 'Bruce Wayne' Python は動的型付き言語であるため、この情報はランタイム(実行時)にはあまり意味がないのですが、 mypy などの型チェックツールをつかうと、型の誤りをチェックすることができます。 def check_batman(name: str) -> bool: return name == 'Bruce Wayne' a

        Python の型システムの上で Immutable な Python プログラムを作る - 病みつきエンジニアブログ
      • 実行中のシェルスクリプトをchattr(1)を使ってimmutableにするというのはどうか - その手の平は尻もつかめるさ

        [追記] 実行中のシェルスクリプトをchattr(1)を使ってimmutableにするというのはどうか - その手の平は尻もつかめるさ 調べてみたけどこれが良さそう <a href="https://stackoverflow.com/a/3399850/1921216" target="_blank" rel="noopener nofollow">https://stackoverflow.com/a/3399850/1921216</a>2022/01/02 17:02 b.hatena.ne.jp このブックマークコメントで指摘されましたが、immutableにするまでもなくこのラッパースクリプトを噛ませると良さそう。 #!/bin/bash # usage: # sh-run.sh script-you-want-to-run.sh args... set -ue file="$

          実行中のシェルスクリプトをchattr(1)を使ってimmutableにするというのはどうか - その手の平は尻もつかめるさ
        • Immutable.jsとImmer、ちゃんと使い分けていますか?

          昨今のフロントエンド開発では、データをイミュータブルなオブジェクトとして扱うのが主流です。すなはち、データが変わるときはオブジェクトを書き換えるのではなく、新しいデータを持った新しいオブジェクトを作ります。最近ではオブジェクトがデータとしてプログラムのあちこちで取り回されることが増えて、一度余所に渡されたデータの中身が後から変更されるのは混乱をきたし設計が困難になるというのが主な理由です。 データを変更するたびに新しいオブジェクトを作るのは、特にデータが複雑になったりネストしたりしていると面倒だしプログラムの見通しが悪くなります。そこで使われるのが、データをイミュータブルに扱うためのライブラリであるImmutable.jsとImmerです。 データをイミュータブルなものとして扱うという目的はどちらのライブラリでも達成することができますが、現在では Immer のほうが開発が活発であり、独自

            Immutable.jsとImmer、ちゃんと使い分けていますか?
          • Immutable Python ~ NamedTuple で書く副作用のないプログラム - JX通信社エンジニアブログ

            この記事はJX通信社 Advent Calendar 2019 の23日めの記事です。 昨日は Yosk さんの 名刺作成をデザイナーの業務から外して、効率化させた話 でした。 こんにちは、サーバーサイドエンジニアの @kimihiro_n です。 今回は Python の Immutable を最大限活用してみる話を書いてみます。 【2019/12/23 訂正 1 】 : NamedTupleを使う際、同値であればオブジェクト自体も同一であると書いてましたがこちらは誤りでした。 個々の id を調べてみると別々のオブジェクトが割り当てられていたため、記事の表現を一部修正しました。 【2019/12/24 訂正 2 】: コメントにて、Java の String オブジェクトも不変であるというご指摘をいただきました。 不変であることとオブジェクトが同一であることの性質を混同してしまっていた

              Immutable Python ~ NamedTuple で書く副作用のないプログラム - JX通信社エンジニアブログ
            • データモデルをimmutableに設計したいが... - Magnolia Tech

              データ構造をimmutableにしたい、イベントは起きたことをそのまま記録したい、更には監査の観点から修正させたくない、という人類の夢と希望に対して、「だってそれじゃあ現場は回らないんだよ」という例外運用のバランスをどこで取っていくか?というのは昨日・今日出てきた話ではないんですよ— magnoliak🍧 (@magnolia_k_) 2021年11月28日 所謂、業務システムの設計の一番肝心なところって、「起きた事実をありのまま記録する」っていう要件と、実際の運用がそうなっていない現実との戦いなんじゃないかって みんなそうしたいんだよ、でもできないんだよっていう— magnoliak🍧 (@magnolia_k_) 2021年11月28日 「データを活用しよう」って言い出しても、「活用できるように維持していましたっけ?」みたいな話も同じなんだけど、とにかく例外との戦いなんですよ— m

                データモデルをimmutableに設計したいが... - Magnolia Tech
              • TypeScriptの表現力で自由なJavaScriptに立ち向かう 〜 Immutable.js 編 〜 | Wantedly Engineer Blog

                WantedlyのDX (Developer Experience) Squadでエンジニアをしている原 将己 (qnighy) です。 Immutable.jsというライブラリを使っているJavaScriptコードをTypeScript化するにあたって、既存の型定義では不十分だった箇所を独自に修正しました。このときしたことがTypeScriptの知見として面白いと思ったので紹介します。 Immutable.js とはImmutable.js はFacebookが開発している永続データ構造 (純粋関数型データ構造、不変データ構造) のJavaScript実装です。配列 (List), Map, Set などが実装されていますが、データ構造に対する変更操作は全て「新しい状態を返す関数」の形で提供されています。 import { List } from "immutable"; const u

                  TypeScriptの表現力で自由なJavaScriptに立ち向かう 〜 Immutable.js 編 〜 | Wantedly Engineer Blog
                • Flutter/Dartにおけるimmutableの実践的な扱い方

                  以下の記事でも触れている StateNotifier は状態値をimmutableで扱うことが実質必須ですが、そのimmutableプログラミングがあまり理解できていない様子が散見されたり質問を受けることが多いのでそれについて記事にしてみました。 immutableについての良い解説記事なども色々ありますが、Flutter/Dartにおいての実践的な扱い方に対して飛躍がある気がしていて、それを埋められることを意識して順を追って説明してきます。 以下で示したコードは https://github.com/mono0926/riverpod_example/blob/main/test/test.dart に大体含まれています。 mutableなクラスの挙動まず、mutableなクラスの挙動は以下のようになります。 class Mutable { Mutable(this.value); in

                    Flutter/Dartにおけるimmutableの実践的な扱い方
                  • GitHub - wasmerio/ate: Distributed immutable data store with strong encryption and authentication

                    You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                      GitHub - wasmerio/ate: Distributed immutable data store with strong encryption and authentication
                    • Ruby 3.2 introduces Data, a new core class for immutable value objects

                      BlogRuby 3.2 introduces Data, a new core class for immutable value objects Ruby 3.2 introduces Data, a new core class for immutable value objects. Value objects are a powerful tool for improving the quality of code. They are easy to understand and use and can help improve the readability and maintainability of code by making it more concise, consistent, and easier to reason about. Value objects ar

                        Ruby 3.2 introduces Data, a new core class for immutable value objects
                      • GitHub - codenotary/immudb: immudb - immutable database based on zero trust, SQL/Key-Value/Document model, tamperproof, data change history

                        Don't forget to ⭐ this repo if you like immudb! 🎉 23M pulls from docker hub! Detailed documentation can be found at https://docs.immudb.io/ immudb is a database with built-in cryptographic proof and verification. It tracks changes in sensitive data and the integrity of the history will be protected by the clients, without the need to trust the database. It can operate as a key-value store, as a d

                          GitHub - codenotary/immudb: immudb - immutable database based on zero trust, SQL/Key-Value/Document model, tamperproof, data change history
                        • OktaとMSの連携でImmutable IDという普遍的なはずなIDを吹っ飛ばした時の話|kobaso

                          これを読んでる君は、Immutable IDをきっと吹っ飛ばしたからやってきたのでしょう... という物語調はおいといて、OktaとMSの連携でしくじった時にしんどかった時の話(Immutable ID版)をします。 そもそもの話まず一つ愚痴です。OktaとMS Office365のアプリテンプレートはあるんですが、Azure ADのみの構成の場合、これ非常にわかりにくいというか、とても初見殺しです。 なぜかというと、Okta上のドキュメントではPowerShellとAPIを利用した方法の2パターンあります。 Oktaでは今おすすめしているのはAPIの方 なので、APIを利用してみるかってなるのですが、こっちの方法のドキュメントは用意されてないんですよね。なんで?おすすめじゃないの? ちなみにPowerShellは用意されてます。ただしAzure Active Directory Modu

                            OktaとMSの連携でImmutable IDという普遍的なはずなIDを吹っ飛ばした時の話|kobaso
                          • PendingIntentのFLAG_IMMUTABLEとFLAG_MUTABLE

                            Target SDK 31(Android 12)から PendingIntent のmutability(可変性)を指定する必要があります。 https://developer.android.com/about/versions/12/behavior-changes-12#pending-intent-mutability 指定するときに FLAG_IMMUTABLE か FLAG_MUTABLE のどちらかの値を使用することになります。 この2つのフラグの違いについて解説します。 コード例まずは動作確認用として、Activityから別のActivityにPendingIntentを渡して、そのPendingIntentを実行する例です。 まずはPendingIntentを作って、それを別のActivityに渡すコードです。 次に、起動されたActivity側でPendingInte

                            • Python strings are immutable, but only sometimes

                              Python strings are immutable, but only sometimes 2/15/2021 Update 2/16/2021: See the discussion of this post on Hacker News. The standard wisdom is that Python strings are immutable. You can't change a string's value, only the reference to the string. Like so: x = "hello" x = "goodbye" # New string! Which implies that each time you make a change to a string variable, you are actually producing a b

                                Python strings are immutable, but only sometimes
                              • Immutable Styles

                                A library for styling web interfaces with a focus on predictability and robustness Immutable Styles removes CSS side effects allowing unexpected UI bugs to be caught ahead of time v1.0.52 Star No Side Effects Side effects in CSS describe styles that are neither expected or desired. They are usually a concequence of: selectors clashing with other selectors, selectors targeting unwanted elements, or

                                • 特定のプロパティを除外した新しいオブジェクトを作る(immutableなdelete) - rikubaのブログ

                                  あるオブジェクトから、特定のプロパティのみ除外した新しいオブジェクトを作りたい場合がある。 const p1 = { x: 0, y: 1, z: 2, }; // p1からzプロパティを除外した新しいオブジェクトを作る const p2 = Object.assign({}, p1); delete p2.z; console.log(p2); // { x: 0, y: 1 } 最近の実装(およびtranspile前提の環境)であればECMAScriptのObject Rest Destructuringを使うことで、外部ライブラリやユーティリティ関数を用意しなくても1行で書くことができる。 const { z, ...p2 } = p1; console.log(p2); // { x: 0, y: 1 } 格納されるプロパティのキーや取り除きたいプロパティのキーが動的な場合は、Co

                                    特定のプロパティを除外した新しいオブジェクトを作る(immutableなdelete) - rikubaのブログ
                                  • Ruby adds a new core class called Data to represent simple immutable value objects

                                    Ruby adds a new core class called Data to represent simple immutable value objects Nov 22, 2022 Ruby 3.2 adds a new core class called Data to represent simple immutable value objects. The Data class helps define simple classes for value-alike objects that can be extended with custom methods. While the Data class is not meant to be used directly, it can be used as a base class for creating custom v

                                      Ruby adds a new core class called Data to represent simple immutable value objects
                                    • GitHub - unadlib/mutative: Efficient immutable updates, 2-6x faster than naive handcrafted reducer, and more than 10x faster than Immer.

                                      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                        GitHub - unadlib/mutative: Efficient immutable updates, 2-6x faster than naive handcrafted reducer, and more than 10x faster than Immer.
                                      • Immutableなモノたち - Qiita

                                        どーいうことだってばよ? 2016/07/26は雨が降って、自転車に乗れなかったのでむしゃくしゃしてやった。後悔はしていない。 System.Collections.Immutableを簡単にまとめていこうかなって。 どこから取れるの? System.Collections.Immutable このあたりから落としてくれば良いかと。ただ、VisualStudio使ってるなら、Nugetでさくっと落としてきた方が楽です、えぇ。 Mutableなモノたち 普段、一般的に使っているList<T>や、配列はImmutableでは無いので、以下のような操作をした結果、操作したインスタンスの状態が変化する。 using System; using System.Collections.Generic; namespace ConsoleApplication1 { class Program { st

                                          Immutableなモノたち - Qiita
                                        • immudb - immutable database based on zero trust, SQL and Key-Value

                                          OPEN SOURCE IMMUTABLE DATABASE High performance and easy to integrate Supports both Key/Value & SQL Cryptographical client-verification, tamper-resistant, and auditable Versioned and temporal queries subject to cryptographic verification

                                          • Solene'% : Introduction to immutable Linux systems

                                            1. Introduction § If you reach this page, you may be interested into this new category of Linux distributions labeled "immutable". In this category, one can find by age (oldest → youngest) NixOS, Guix, Endless OS, Fedora Silverblue, OpenSUSE MicroOS, Vanilla OS and many new to come. I will give examples of immutability implementation, then detail my thoughts about immutability, and why I think thi

                                            • Announcing FIC: Fast Immutable Collections

                                              Photo by Ross Findon on UnsplashA native Dart list is mutable, meaning you can change its items: var list = [1, 2]; list.add(3);You can prevent mutability by using the List.unmodifiable constructor, but this will not remove the add method. It just fails at runtime: var list = List.unmodifiable([1, 2]); var list.add(3); // Throws an exception.Once you have a list you can’t change, you may still add

                                                Announcing FIC: Fast Immutable Collections
                                              • GitHub - giusepperaso/structura.js: A very fast and lightweight Typescript library to create immutable states with a mutable syntax

                                                A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

                                                  GitHub - giusepperaso/structura.js: A very fast and lightweight Typescript library to create immutable states with a mutable syntax
                                                • Clojureコレクションで探るimmutableでpersistentな世界 | ドクセル

                                                  「楽しく楽にcoolにsmartに」を理想とするprogrammer/philosopher/liberalist/realist。 好きな言語はClojure, Haskell, Python, English, français, русский。 読書、プログラミング、語学、法学、数学が大好き! イルカと海も大好き🐬

                                                    Clojureコレクションで探るimmutableでpersistentな世界 | ドクセル
                                                  • [Flutter]immutableなクラスを扱いやすくする機能をコード生成で提供してくれるfreezedを使ってみる | DevelopersIO

                                                    Flutterで作ったアプリの構成をProvider + ChangeNotifierからriverpod + state_notifier + flutter_hooks + freezedのに書き換えたいと思っています。 4つのライブラリの内いくつかを使ったコードを読んだり手元で書いてみたりしていて、記事を書く前にそれぞれのライブラリについて日本語で扱った記事を自分も書いておきたいと思いました。今回はfreezedです。 今のところ採用する残りのライブラリについても一つずつ個別に記事を書く予定でいますが、riverpodとstate_notifierはまとめて良い気もしているので記事構成はまだ検討中です。 移行を考えたのは、以下の記事を読んでからです。しばらく変更していなかった個人用のFlutter製はてなフィルタに手を入れることにしました。Flutterでの状態管理手法のこれまでの経

                                                      [Flutter]immutableなクラスを扱いやすくする機能をコード生成で提供してくれるfreezedを使ってみる | DevelopersIO
                                                    • Vale's First Prototype for Immutable Region Borrowing

                                                      Three years, two states, and one pandemic ago, I wrote about a very weird idea: what if the type system could track which data existed before a pure call, to eliminate its memory safety overhead? 0 And a couple months later, another weird idea struck: what if we use generational indices as the foundation for an entire language? These ideas evolved in weird ways. The first one evolved into a full r

                                                      • Immutable Array Operation

                                                        index.js �v3V � �v3V const arrA = [1, 2, 3, 4, 5]; const arrB = [6, 7, 8, 9, 10]; const arrDuplicated = [1, 2, 3, 3, 2, 2, 5]; const dataList = [ {id: 1, name: "Sapporo"}, {id: 2, name: "Tokyo"}, {id: 3, name: "Osaka"} ]; // ルール // もとの配列は非破壊であること { // 要素を末端に追加 const element = 0; // 追加したい要素 const arrNext = [...arrA, element]; console.log(arrNext); } { // 要素を先頭に追加 const element = 0; // 追加したい要素 const

                                                          Immutable Array Operation
                                                        • GitHub - Kotlin/kotlinx.collections.immutable: Immutable persistent collections for Kotlin

                                                          You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session.

                                                            GitHub - Kotlin/kotlinx.collections.immutable: Immutable persistent collections for Kotlin
                                                          • Python のイミュータブル, immutable ってなに? | 民主主義に乾杯

                                                            # 1. 簡単に言えば... 変更できないオブジェクトのことをイミュータブルと言います。 反対に変更できるオブジェクトのことをミュータブルと言います。 値を変更できるオブジェクトのことを mutable と呼びます。 Objects whose value can change are said to be mutable; 値を変更できないオブジェクトのことを immutable と呼びます。 objects whose value is unchangeable ... are called immutable. 3.1. オブジェクト, 値 そして 型 - Python 言語リファレンス 3.1. Objects, values and types - The Python Language Reference immutable (opens new window) (イミュータブ

                                                            • Immutableなデータ構造について(Stack, Queue) - たこし++の備忘録

                                                              この記事はデータ構造とアルゴリズム Advent Calendar 2019 - Qiitaの12日目の記事です. はじめに 唐突にデータ構造を勉強したくなり,怖そうだからという理由で今まで逃げてきた永続データ構造について勉強したものを一部まとめてみました. 本記事の構成はこんな感じです. Mutable, Immutableってそもそも何 一般的(Mutable)なStackとQueueについて Immutable Stackについて Immutable Queueについて(前編) Immutable Queueについて(中編) Immutable Queueについて(後編) Immutable Stackについてはパッと見つけることができましたが,効率の良いImmutable Queueについては自分のググラビリティが低すぎて見つけることができませんでした. Immutable Que

                                                                Immutableなデータ構造について(Stack, Queue) - たこし++の備忘録
                                                              • Add Data class implementation: Simple immutable value object by zverok · Pull Request #6353 · ruby/ruby

                                                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                  Add Data class implementation: Simple immutable value object by zverok · Pull Request #6353 · ruby/ruby
                                                                • 2021-07-06のJS: TypeScript 4.4 Beta、immutable-js 4.0.0-rc.13、petite-vue

                                                                  JSer.info #547 - TypeScript 4.4 betaがリリースされました。 Announcing TypeScript 4.4 Beta | TypeScript Control Flow Analysisの改善され、Type Gurdeの結果を変数に入れてから扱うようなAliasのケースも正しく推論されるようになっています。 また、Index SignaturesにSymbolやTemplate Stringを利用できるようになっています。 Catch節のデフォルトをunknown型にするuseUnknownInCatchVariablesオプションの追加と optionalとundefined値の区別をするexactOptionalPropertyTypesオプションの追加されています。 その他には、declarationの生成やstrictモードでのビルドパフォー

                                                                    2021-07-06のJS: TypeScript 4.4 Beta、immutable-js 4.0.0-rc.13、petite-vue
                                                                  • Immutable.jsを使うメリット - Runner in the High

                                                                    先日、新卒で入ったエンジニアが 「Immutable.jsの研修課題をやってるんですけど、正直なんで必要なのか分かんないっす」 と言っていた。 たしかに React, Redux と Immutable.js をセットでつかおうみたいなノリの記事はネットでよく見るが、じゃあなんでそのセットなの?という点に関してはあまり詳しく書かれていないことのが多い気がしたので、個人的にその理由っぽいのを雑に書き残しておこうと思う。 イミュータビリティのいいとこ コーディング・バグを減らす 言語仕様上ミュータブルな JavaScript は、大勢で開発してるとこっそりどこかで参照を持ったオブジェクトを書き換えてた、なんてことになりやすい。なのでデータを更新する際にはイミュータブルであることが保証できるとバグが起こりにくいコードを書ける メモリ効率がいい イミュータブルなオブジェクトは中身が同じなのでコピー

                                                                      Immutable.jsを使うメリット - Runner in the High
                                                                    • GitHub - matthewp/robot: 🤖 A functional, immutable Finite State Machine library

                                                                      You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                                        GitHub - matthewp/robot: 🤖 A functional, immutable Finite State Machine library
                                                                      • Immutable | Powering The Next Generation Of Web3 Games

                                                                        $IMX is the native utility and governance token of the Immutable protocols. ‍ To review information related to the $IMX Token, you will leave the Immutable Pty Ltd website and join a website made available by the Digital Worlds Foundation, which is independent from and unaffiliated with Immutable Pty Ltd. ‍ Immutable Pty Ltd is not responsible for any action taken or content held on the third part

                                                                          Immutable | Powering The Next Generation Of Web3 Games
                                                                        • AzureにImmutable Storageがパブリックプレビューとして登場したので、対応規制とAWSとGCPの対応状況を調べてみた | DevelopersIO

                                                                          いわさです。 AzureのBlob Storage にて、"immutable storage"という機能がパブリックプレビューで利用できるようになったため、少し触りまして、ユースケースを確認しました。 また、他のパブリッククラウドでの対応状況もあわせて整理したのでまとめてみました。 本機能はパブリックプレビューです 使ってみる まず、この機能はリージョンがカナダかフランスの場合のみ使えます。 厳密に言うと、以下の4リージョンが対象です。 Canada Central Canada East France Central France South 今回はCanada Centralにて作成しました。 本機能を利用する前提として、ストレージアカウントのバージョン管理を有効にしておく必要があります。 リージョンを特定リージョンにすることと、バージョン管理を有効にする以外は設定は不要です。 ポリ

                                                                            AzureにImmutable Storageがパブリックプレビューとして登場したので、対応規制とAWSとGCPの対応状況を調べてみた | DevelopersIO
                                                                          • 【独占取材】イーサリアム「ガス代ゼロ」実現しNFTの世界をアップデート、Immutable Xの分散化への想い(Immutable創業者Robbie Ferguson) | あたらしい経済

                                                                            【独占取材】イーサリアム「ガス代ゼロ」実現しNFTの世界をアップデート、Immutable Xの分散化への想い(Immutable創業者Robbie Ferguson) 全世界をイーサリアムで取引可能にすること 「全世界をイーサリアムで取引可能にすること」 オーストリアを拠点とするImmutable社は、このようなビジョンで創業した。 Immutableが開発するImmutable X(イミュータブル エックス)はブロックチェーン 基盤のNFTマーケットプレイスなどの取引手数料やスピードなどの課題を解決しようとするNFT取引に特化したレイヤー2ソリューションだ。 Immutable X 公式サイト 2019年にImmutableはNFTトレーディングカードゲーム「Gods Unchained」を立ち上げ、当時最高取引高210ETHを記録するなど話題を呼んだ。 GODS UNCHAINED

                                                                              【独占取材】イーサリアム「ガス代ゼロ」実現しNFTの世界をアップデート、Immutable Xの分散化への想い(Immutable創業者Robbie Ferguson) | あたらしい経済
                                                                            1

                                                                            新着記事