This file contains 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
eccube: | |
rate_limiter: | |
parameters: | |
eccube_password_min_len: 1 | |
eccube_password_pattern: '/.*/i' |
This file contains 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
/** | |
* Chatworkにミュートボタン追加.js | |
* | |
* ミュート設定を1クリックで済ませるためのボタンをChatworkに追加するJavaScriptです。 | |
* 次の拡張機能などで使うことを想定しています。 | |
* | |
* ScriptAutoRunner(https://chrome.google.com/webstore/detail/scriptautorunner/gpgjofmpmjjopcogjgdldidobhmjmdbm) | |
* | |
* 下記コードを理解できる方が、自己責任でご利用ください。 | |
* また、環境によっては動かないと思うので調整してください。 |
This file contains 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
""" | |
# linux-useradd-util.py: LinuxでSSH接続できるユーザを作成するユーティリティ | |
## 使い方 | |
ユーザの追加のため適切な権限が必要な点に注意してください。 | |
また、実行前にスクリプトが問題ないことを確認してください。 | |
```bash | |
# simple usage |
This file contains 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
/** | |
* PNGのチャンク構成を確認するスクリプト | |
* | |
* ``` | |
* deno run --allow-read=. inspect-png-chunk.ts | |
* ``` | |
*/ | |
type PNGChunk = { | |
length: number; // 4 bytes |