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
| # 1. デスクトップフォルダに移動 | |
| cd ~/Desktop/ | |
| # 2. ファイル生成コマンドを実行 | |
| for i in {1..200}; do echo "yo" > hack$i.html; done | |
| # 3. 一括ファイル削除 | |
| rm hack*.html |
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
| """ | |
| 雑です。日本語として成立していないものも出力されます。 | |
| 5600個くらい出ます。 | |
| """ | |
| excludes = 'ぁぃぅぇぉゔゕゖゐゑゎ' | |
| hiragana = [chr(i) for i in range(ord("ぁ"), ord("ゖ")+1) if chr(i) not in excludes] | |
| print("".join(hiragana)) | |
| count = 1 | |
| for first in hiragana: |
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
| import React, {useState, useEffect} from "react"; | |
| export const ColorCodes = () => { | |
| const [colors, setColors] = useState([]); | |
| const [correctColor, setCorrectColor] = useState(""); | |
| const [isCorrect, setIsCorrect] = useState(false); | |
| const [isShowResult, setIsShowResult] = useState(false); | |
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
| name: "Diff Display and Update Cache" | |
| description: "Compare current top5 results with previous cache, display new additions, and update the cache file." | |
| inputs: | |
| currentResults: | |
| description: "The JSON string of current top5 results from malware-check action." | |
| required: true | |
| orgName: | |
| description: "The GitHub organization name." | |
| required: true |
OlderNewer