i = Boy()
you = Girl()
love = i + you
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
hello world! |
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
WITH finished AS ( | |
SELECT workpiece_type, current_procedure, procedure_result, 1 AS status | |
FROM t_mvp_aau_result | |
WHERE workpiece_id IN ( | |
SELECT workpiece_id | |
FROM t_mvp_aau_result | |
WHERE station_id = '1' | |
ORDER BY starttime DESC | |
LIMIT 1 | |
) |
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
WITH finished AS ( | |
SELECT workpiece_type, current_procedure, procedure_result, 1 AS status | |
FROM t_mvp_aau_result | |
WHERE workpiece_id IN ( | |
SELECT workpiece_id | |
FROM t_mvp_aau_result | |
WHERE station_id = '1' | |
ORDER BY starttime DESC | |
LIMIT 1 | |
) |
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
# pip install PyUserInput | |
from pykeyboard import * | |
import time | |
import pyperclip | |
import datetime | |
key = PyKeyboard() | |
i = 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
#修改日期,将日期设定成2009年5月7日 | |
date -s 2009-05-07 | |
#修改时间,将时间设定成下午8点18分0秒 | |
date -s 20:18:00 | |
hwclock --systohc |
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
# 共享主机的localtime | |
docker run -ti -d --name my-nginx -v /etc/localtime:/etc/localtime:ro docker.io/nginx /bin/bash | |
# 复制主机的localtime | |
docker cp /etc/localtime 87986863838b:/etc/ |
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
#!/usr/bin/env bash | |
install() { | |
echo "hi" | |
} | |
if [[ "$1" == "install" || "$1" == "start"]]; | |
then $1; | |
else | |
echo -e "Uxc"; |
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
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico"> |
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
git push --tag | |
git pull --tag | |
git tag -d v1 | |
打标签 | |
git tag v1 | |
git tag v2 commit-id | |
查看所有标签 |
OlderNewer