ひめ@心に火を灯す人

音声×文章で稼ぐ元気なサラリーマン|10代の適当な過ごし方に後悔→奮起し2020年から…

ひめ@心に火を灯す人

音声×文章で稼ぐ元気なサラリーマン|10代の適当な過ごし方に後悔→奮起し2020年から音声配信(スタエフ)開始|音声配信歴1年 50,000回再生|note30部|kindle300部|音声配信 副業 kindle出版について主に発信|福岡出身25歳|弱点:辛い食べ物(甘党万歳)

最近の記事

  • 固定された記事

これであなたもトーク名人!抑えるべき5つのポイント‼️

こんにちは!ひめです! 早速ですが、皆様はこんなお悩みありませんか? ・自分の話をついつい配信してしまう。 ・自分の話を無益だと思ってしまう。 ・相手に有益な話をする自信が無い方。 ちょっとまったーー!! ご安心下さい! 悩んでいるあなたを救います!!!🔥 と、えらそうに言っている僕ですが、実は皆様と同じように悩んでいました。 配信初期の頃は、僕自身が大好きなGReeeeNさんやサウナの紹介をしていて、全くリスナーさんに刺さりませんでした(笑) ですが、今回ご

有料
300
    • 【健康系】7月に買って良かった3つのもの

      今回は7月に買って良かったものを厳選して3つご紹介します。 第一位「シリカ水 くまモンの天然水 (阿蘇外輪山)500ml*42本」です。 飲みごごち最高で、ついリピートしたくなる商品です。 また、1本64円なのでコスパよし。 第2位「ライオン DENT.EX ウルトラフロス S10」です。 歯科医師にオススメされて使ってみました。 使い勝手がよく、耐久性にも優れているので重宝してます。 「今のうちから歯に投資しないと取り返しがつかなくなるよ…」とアドバイスを頂い

      • 【CryptoZombies】lesson1 chapter15

        lesson1完結。 学んだこと ・イーサリアムのスマートコントラクトの書き方 ・solidityのプログラミング、イーサリアムスマートコントラクトのプログラム言語 ・イーサリアム上でゲーム開発 感想 ・単純に面白い ・が、結構つまづく箇所も多く難しく感じた(慣れるしかなさそう) →基本的にはプログラミングは覚える必要なし。調べながらコードを書くので、なんとなくの流れを掴めばOKかな。 さてLesson2に進もう。

        • 【CryptoZombies】lesson1 Chapter 14: Web3.js

          Ethereum has a Javascript library called Web3.js. このチャプターでは、名前を入力しどんなゾンビになるのかを確認する回。 沢山コードが出てくるが、現時点では全く理解できなくてOK。

        • 固定された記事

        これであなたもトーク名人!抑えるべき5つのポイント‼️

          【CryptoZombies】lesson1 Chapter 13: Events

          Events are a way for your contract to communicate that something happened on the blockchain to your app front-end, which can be 'listening' for certain events and take action when they happen. Example: // declare the eventevent IntegersAd

          【CryptoZombies】lesson1 Chapter 13: Events

          【CryptoZombies】lesson1 Chapter 12: Putting It Together

          test 1.Create a public function named createRandomZombie. It will take one parameter named _name (a string with the data location set to memory). (Note: Declare this function public just as you declared previous functions private) 2.The f

          【CryptoZombies】lesson1 Chapter 12: Putting It Together

          【CryptoZombies】lesson1 Chapter 11: Keccak256 and Typecasting

          Ethereum has the hash function keccak256 built in, which is a version of SHA3. A hash function basically maps an input into a random 256-bit hexadecimal number. A slight change in the input will cause a large change in the hash. イーサリアムにはSH

          【CryptoZombies】lesson1 Chapter 11: Keccak256 and Typecasting

          【CryptoZombies】lesson1 Chapter 10: More on Functions

          Return Values To return a value from a function, the declaration looks like this: string greeting = "What's up dog";function sayHello() public returns (string memory) { return greeting;} In Solidity, the function declaration contains the

          【CryptoZombies】lesson1 Chapter 10: More on Functions

          【CryptoZombies】lesson1 Chapter 9: Private / Public Functions

          In Solidity, functions are public by default. This means anyone (or any other contract) can call your contract's function and execute its code. it's good practice to mark your functions as private by default, and then only make public the

          【CryptoZombies】lesson1 Chapter 9: Private / Public Functions

          【CryptoZombies】lesson1 Chapter 8: Working With Structs and Arrays

          struct Person { uint age; string name;}Person[] public people; Now we're going to learn how to create new Persons and add them to our people array. // create a New Person:Person satoshi = Person(172, "Satoshi");// Add that person to the A

          【CryptoZombies】lesson1 Chapter 8: Working With Structs and Arrays

          【CryptoZombies】lesson1 Chapter 7: Function Declarations

          A function declaration in solidity looks like the following: function eatHamburgers(string memory _name, uint _amount) public {} This is a function named eatHamburgers that takes 2 parameters: a string and a uint. For now the body of the

          【CryptoZombies】lesson1 Chapter 7: Function Declarations

          【CryptoZombies】lesson1 Chapter 6: Arrays

          // Array with a fixed length of 2 elements:uint[2] fixedArray;// another fixed Array, can contain 5 strings:string[5] stringArray;// a dynamic Array - has no fixed size, can keep growing:uint[] dynamicArray; Public Arrays You can declare

          【CryptoZombies】lesson1 Chapter 6: Arrays

          【CryptoZombies】lesson1 Chapter 5: Structs

          Yes:struct No:stract test pragma solidity >=0.5.0 <0.6.0;contract ZombieFactory { uint dnaDigits = 16; uint dnaModulus = 10 ** dnaDigits; // start here struct Zombie { string name; uint dna; }}

          【CryptoZombies】lesson1 Chapter 5: Structs

          【CryptoZombies】lesson1 Chapter 4: Math Operations

          ・Addition: x + y ・Subtraction: x - y, ・Multiplication: x * y ・Division: x / y ・Modulus / remainder: x % y (for example, 13 % 5 is 3, because if you divide 5 into 13, 3 is the remainder) Solidity also supports an exponential operator (i.e. "

          【CryptoZombies】lesson1 Chapter 4: Math Operations

          【CryptoZombies】lesson1 Chapter 3: State Variables & Integers

          The uint data type is an unsigned integer, meaning its value must be non-negative. There's also an int data type for signed integers. In Solidity, uint is actually an alias for uint256, a 256-bit unsigned integer. You can declare uints wit

          【CryptoZombies】lesson1 Chapter 3: State Variables & Integers

          【CryptoZombies】lesson1 Chapter 2: Contracts

          Solidity's code is encapsulated in contracts. An empty contract named HelloWorld would look like this. contract HelloWorld {} All solidity source code should start with a "version pragma". pragma solidity ^0.4.19;contract HelloWorld {}

          【CryptoZombies】lesson1 Chapter 2: Contracts