Tatsunori Uchino

Results 181 comments of Tatsunori Uchino

@arielyang I suppose that you should refer to websites of governments. https://www.gov.cn/ https://www.kantei.go.jp/ This issue affects also on Japanese. https://www.apple.com/jp/ -> **Does not insert ones** https://aws.amazon.com/jp/ -> Insert ones https://www.microsoft.com/ja-jp...

>let Chinese follow Chinese rules, Japanese follow Japanese rules. no one said we should use unified standards. I regret to say that it is very difficult to do so. For...

@kissge I have sent a PR (https://github.com/prettier/prettier/pull/11597) to fix this in the next major version, but will not be merged as now. Maintainers says that it takes long time to...

https://github.com/RamblingCookieMonster/PSSlack/blob/b8ff0bd60aebfb270afd1973928ed8fcc137153a/PSSlack/Public/Send-SlackMessage.ps1#L376 Appending the option `-ContentType "application/json; charset=utf-8"` may fix this issue. ```powershell Invoke-RestMethod -Method Post -Uri "https://hooks.slack.com/services/[snip]" -Body "{'text': 'Test message / テストメッセージ / Тестовое сообщение'}" -ContentType "application/json; charset=utf-8" ```...

#143 must be fixed before using https://github.com/linuxserver/docker-openssh-server because its host key changes every after containers created

Windows can be tested because [Docker is installed](https://github.com/actions/virtual-environments/blob/main/images/win/Windows2019-Readme.md). macOS is similar to Linux, and most bugs in PRs are supposed to be common in all OSes because configurations, keys, and...

@shimataro Thank you for the information. It seems great and an alternative to Docker in GitHub Actions.

`-c` is also recommended if you do not use `git-restore-mtime` in https://github.com/MestreLion/git-tools. I would also recommend `-z` (compress).

Why don't you use https://github.com/myfreeweb/eslint-plugin-pug ?

あるページ(例: `/page1`)が特定メンバーにしか見れない制限がかかっているとして、次のことが実装できるとよいと思います。 - ~~その子孫ページ(例: `/page1/page2`・`/page1/page3/page4`)は新規作成画面の時点で、デフォルトで`/page1`の制限を引き継ぐよう設定されているようにする(手動で変更可能)~~ (対応済み) - `/page1` の編集画面などで、子孫ページ全てを同じ表示権限にするオプション(チェックボックスなど)を追加する この「子孫の閲覧権限を一括変更する手段」はWindows・Linuxのファイルマネージャや、`chmod`コマンドの`-R`オプションなどで実績があります。しかし、さらなる厳しい(または別の)アクセス制限のある子孫ページがあった時の挙動をどうするかという問題があります。解決策は次の2つです。 - まるまる上書きする (ファイルマネージャや`chmod`はこちらの方法) - 何らかの方法でマージする あるパスが自分の子孫かどうかは `${自パス}/` と前方一致するかどうかで確認できます。あとの問題は下手すると全ページ探索する羽目になることです。