「うんこ」は漢字で「吽子」と書きます。
続きを読む うんこの漢字表現: うんこは漢字でどう書くのか – 吽子Kenji のすべての投稿
分類の項目一覧・分類表ヘッダを作る
仕事をしているといろんなものを分類していくことがあります。 そんなとき、分類表を作ることがあるのですが、いちいちテキスト入力で作っていくのはだいぶ骨の折れる作業です。 ここではそんな分類表と分類項目一覧を Python で出力するコードを紹介します。 (ちょうど Python で作業していたので Python で書きました。)
続きを読む 分類の項目一覧・分類表ヘッダを作るManaging test specifications with Git: Creating Excel from Markdown
Are you writing a test specification?
There are various ways to write test specifications, such as making them as test specifications or as test code, depending on the company.
I think it is common for large, historical companies to create test specifications in Excel files.
When editing by multiple people, I think it is also common, at least in Japan, to use suffixes such as _latest, _latest_20230103, _latest_5 to manage versions.
I would like to know the best practices for handling Excel files, but I have no good idea at the moment, so I decided to use a program to make the differences visible in a Git repository and manage them.
However, if you put the Excel file directly into Git, the difference lines are not clearly displayed. TortoiseGit and other tools will also show you the difference, but can you make pull requests and comments there? You usually see the difference on the web page of the repository anyway. And CSV is also a bit unsatisfactory. There are tools that can edit CSV in table format like spreadsheet, but the diff display of the repository should be a simple character-delimited text, which is not easy to read. So, I thought about managing test cases in Markdown. If you can manage it in text, you can also use *nix commands. You can write test cases even if you don’t have Excel, and if you can convert it to Excel, no one will have any trouble. (The tool I used can also convert to CSV, TSV.)
続きを読む Managing test specifications with Git: Creating Excel from MarkdownMicrosoft Word: 見出し(Headings) と 本文(Body) のフォントを変更する方法
ここでは、Microsoft Wordで見出しと本文のフォントを変更する方法を説明します。私はMicrosoft Word for Mac Version 16.70を使用しました。
続きを読む Microsoft Word: 見出し(Headings) と 本文(Body) のフォントを変更する方法OIDC で使用する code verifier と code challenge の生成方法
下のようにして、 OIDCで使う code_verifier と code_challenge を生成できます。 コードは Gist にもあります。