https://www.cman.jp/network/support/go_access.cgi
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
#!/bin/bash | |
if [ "$(date +\%m -d tomorrow)" != "$(date +\%m)" ]; then | |
exit 0 | |
else | |
exit 1 | |
fi |
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
from openpyxl import load_workbook | |
filename = "target.xlsx" | |
workbook = load_workbook(filename) | |
worksheet = workbook["Sheet1"] | |
worksheet["A1"] = "a" | |
worksheet["B1"] = "b" | |
worksheet["C1"] = "c" |
| TH | TH |
| ---- | ---- |
| TD | TD |
| TD | TD |
TH | TH |
---|---|
TD | TD |
- 未着手
⬜
- 進行中
📝
info
$ cat z-sample.csv | sort -t ',' -k1,1
apple,110
banana,90
cherry,100
kiwi,60
lemon,50
orange,120
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
都道府県名 | 都道府県番号 | |
---|---|---|
北海道 | 01 | |
青森県 | 02 | |
岩手県 | 03 | |
宮城県 | 04 | |
秋田県 | 05 | |
山形県 | 06 | |
福島県 | 07 | |
茨城県 | 08 | |
栃木県 | 09 |
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
function myFunction() { | |
const targetLabel = 'targetLabel'; | |
const query = 'label:' + targetLabel; | |
const threads = GmailApp.search(query); | |
if (threads.length === 0) { | |
Logger.log('No threads found with the label: ' + targetLabel); | |
return; | |
} |
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
#!/bin/bash | |
URL="https://example.com" | |
while :; do date; curl ${URL} -o /dev/null -w '%{http_code}\n' -s; sleep 1200; done |
NewerOlder