#katorieの自己紹介
医療機器メーカーで営業部サポートをしながら、Rubyを独学中です。 VBAも少し挑戦したりしています。
また、趣味で煎茶道の教授をもっています。
伝統的なお茶会はもちろん、
洋服で、手ぶらで参加できるお茶会を企画したりしています。
| // SPDX-License-Identifier: UNLICENSED | |
| pragma solidity >=0.8.0 <0.9.0; | |
| import "@openzeppelin/contracts/token/ERC721/extension/ERC721URIStorage.sol"; | |
| import "@openzeppelin/contracts/utils/Counters.sol"; | |
| import "@openzeppelin/contracts/access/Ownable.sol"; | |
| contract SampleERC721 is ERC721URIStorage, Ownable { | |
| // ERC721URIStorage, Ownable というinterfaceを継承している(多重継承? | |
| // ERC721URIStorage -> tokenURI を備えたNFTの基本機能を提供してくれるコントラクト |
| // SPDX-License-Identifier: UNLICENSED | |
| pragma solidity ^0.8.7; | |
| contract Greeter { | |
| string name; | |
| function setName(string calldata _name) public { | |
| // calltada -> Datalocation 変数がどのように保存されるかを指定する修飾子 | |
| // strage: ブロックチェーン上に永続化される | |
| // calldata: 関数のスコープ内でのみ生存し、変更不可 |
| Post-install message from capybara: | |
| IMPORTANT! Some of the defaults have changed in Capybara 2.1. If you're experiencing failures, | |
| please revert to the old behaviour by setting: | |
| Capybara.configure do |config| | |
| config.match = :one | |
| config.exact_options = true | |
| config.ignore_hidden_elements = true | |
| config.visible_text_only = true | |
| end |
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>カレーのレシピ</title> | |
| </head> | |
| <body> | |
| <header> |
| Option Explicit | |
| '見積控えのデータを整理する | |
| '---必要のない列を削除 | |
| '---消費税の行を削除 | |
| '---数量、単価、金額の欄が「0」だったら文字色を白にする | |
| Sub 見積控え整理() |
| Option Explicit | |
| '---------- 基本仕様 ---------- | |
| ' シートを末尾にコピーする | |
| ' シート名を変える | |
| ' A2の日付を変える | |
| ' 31日までループする | |
| Sub 予定表作成() | |
| Dim firstDay As Date |
| Warning: You have leftover files from an older version of Xcode. | |
| You should delete them using: | |
| /Developer/Library/uninstall-developer-folder | |
| Warning: You have unlinked kegs in your Cellar | |
| Leaving kegs unlinked can lead to build-trouble and cause brews that depend on | |
| those kegs to fail to run properly once built. Run `brew link` on these: | |
| autoconf |
| Error: undefined method `to_sym' for nil:NilClass | |
| Please report this bug: | |
| https://github.com/mxcl/homebrew/wiki/troubleshooting | |
| /usr/local/Library/Homebrew/cmd/update.rb:103:in `report' | |
| /usr/local/Library/Homebrew/cmd/update.rb:101:in `each_line' | |
| /usr/local/Library/Homebrew/cmd/update.rb:101:in `report' | |
| /usr/local/Library/Homebrew/cmd/update.rb:23:in `update' | |
| /usr/local/Library/brew.rb:95:in `send' | |
| /usr/local/Library/brew.rb:95 |