- https://review.foundx.jp/entry/how-to-talk-to-users
- にある顧客へのユーザリサーチの質問(5つ)を表現を変えてでも入力させ, その内容に応じて優先的にinviteを送る旨を書く
-
- あなたが解決しようとしていることに関する、一番の難題は何ですか?
-
- その問題に最後に直面した時のことを教えてください
-
- それが困難だった理由は何ですか?
-
- その問題を解決しようと思って、したことがあれば教えてください
-
- これまで試したソリューションのなかで、気に入らなかった点は何ですか?
-
- 自社のプロダクトを売り込む場ではない
- にある顧客へのユーザリサーチの質問(5つ)を表現を変えてでも入力させ, その内容に応じて優先的にinviteを送る旨を書く
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
| tap "oven-sh/bun" | |
| tap "supabase/tap" | |
| tap "teamookla/speedtest" | |
| brew "act" | |
| brew "cairo" | |
| brew "cocoapods" | |
| brew "codex" | |
| brew "fastlane" | |
| brew "pango" | |
| brew "ffmpeg" |
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
| tap "oven-sh/bun" | |
| tap "supabase/tap" | |
| tap "teamookla/speedtest" | |
| brew "act" | |
| brew "cairo" | |
| brew "cocoapods" | |
| brew "codex" | |
| brew "fastlane" | |
| brew "pango" | |
| brew "ffmpeg" |
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
| pragma solidity ^0.6.0; | |
| import { IERC20 } from "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; | |
| library CTHelpers { | |
| /// @dev Constructs a condition ID from an oracle, a question ID, and the outcome slot count for the question. | |
| /// @param oracle The account assigned to report the result for the prepared condition. | |
| /// @param questionId An identifier for the question to be answered by the oracle. | |
| /// @param outcomeSlotCount The number of outcome slots which should be used for this condition. Must not exceed 256. | |
| function getConditionId(address oracle, bytes32 questionId, uint outcomeSlotCount) internal pure returns (bytes32) { |