- 名前: SNS向け翻訳家
- 説明: SNSへの投稿をもとの文のフレーバーを活かして適切に翻訳し、ハッシュタグの組みと合わせて提案します。
- When asked a question, respond as the highest specialist with compliance and fact-checking rigor for questions with a capability of 250, assuming the questioner's capability is 10.
- When asked about programming, provide code snippets. If no specific instructions are given, output in JavaScript.
- If you don't know, respond with "I don't know".
- When answering with numbers, actively use a code interpreter to respond accurately.
- If the input contains a URL, refer to the content of the linked page and site.
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
| #!/bin/bash | |
| # Message list | |
| MESSAGES=( | |
| "Hello, world!" | |
| "How's everyone doing today?" | |
| "This is a random message." | |
| "Hope you all are having a great day!" | |
| "Remember to smile!" | |
| "Coding is fun." |
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
| <!DOCTYPE html> | |
| <html> | |
| <!-- | |
| Copyright (c) 2024 hidao80 | |
| Released under the MIT license | |
| https://opensource.org/licenses/mit-license.php | |
| --> | |
| <!-- | |
| Twitter Emoji (Twemoji) | |
| License |
Excelの全てのブックに対してフィルハンドルを無効化しつつ、ドラッグアンドドロップを有効にする方法は、**個々のワークブックではなく、Excelの「個人用マクロブック」**にVBAコードを保存することで可能です。この方法では、すべてのブックでフィルハンドル無効化が適用され、さらに保存時に拡張子を .xlsx に保つこともできます。
個人用マクロブックは、すべてのブックで利用可能なマクロを保存する特別なブックです。
- Excelで個人用マクロブックを開く
- Excelを開き、
Alt + F11キーを押してVBAエディタを開きます。 - 「VBAプロジェクト」ウィンドウで、
PERSONAL.XLSB(個人用マクロブック)が表示されているか確認します。表示されていない場合、Excelで新しいマクロを記録して保存するときに「マクロの記録」ダイアログでマクロの保存先に「個人用マクロ ブック」を選択し、OKボタンをクリックすると作成されます。
- Excelを開き、
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
| /** | |
| Copyright (c) 2024 hidao80 | |
| Released under the MIT license | |
| http://opensource.org/licenses/mit-license.php | |
| */ | |
| /* not post-column */ | |
| article { | |
| time::before {content: attr(title) " ("} | |
| time::after {content: ")"} |
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
| /** | |
| * Copyright (c) 2023 hidao80 | |
| * Released under the MIT license | |
| * https://opensource.org/licenses/mit-license.php | |
| */ | |
| /** | |
| * Returns a new element with the given tag name. | |
| * @param {string} tagName | |
| * @returns {HTMLElement} | |
| */ |
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
| <?xml version="1.0"?> | |
| <ruleset name="PHPMD ruleset that converts error messages into Japanese." | |
| xmlns="http://pmd.sf.net/ruleset/1.0.0" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" | |
| xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd"> | |
| <description> | |
| メッセージを日本語化しました。 | |
| エラーメッセージを日本語訳するには、ルールを読み込む必要があります。そのためプロジェクトに不要なルールはコメントアウトしてください。 | |
| ライセンス: This work is licensed under CC BY 4.0 |
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
| ' 定数値の定義 | |
| Const adTypeBinary = 1 | |
| Const adTypeText = 2 | |
| Const adLongVarBinary = 205 | |
| Const CHATWORK_TOKEN = "" ' Chatwork 通知用の API トークン。例)"123456789abcdef" | |
| Const ROOM_NO = "" ' 通知を送信するチャンネルのルーム ID。例)"1234567890" | |
| Const BOUNDARY = "011000010111000001101001" ' ファイルアップデート API のメッセージと添付ファイルのデータを分ける目印(HTTP 準拠) | |
| Const CLOSE_BOUNDARY = vbCrLf & "--" & BOUNDARY & "--" & vbCrLf ' multipart/form-data の終端を表す文字列(HTTP 準拠) | |
| ' メール着信を Outlook が検出した場合に実行される Outlook 規定のサブプロシージャ。 |
NewerOlder