English | 香港 | 中国内地 |
---|---|---|
CPU | CPU | 处理器 |
RAM | RAM, 記憶體 | 内存 |
Display Card | Display | 显卡 |
Monitor | 芒 | 屏、屏幕 |
Touch Screen | Touch Screen | 触摸屏 |
Power Supply | 火牛 | 电源 |
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 python3 | |
import sys | |
# Assuming https://github.com/plinss/acmebot.git is cloned to /original/acmebot | |
# Please also create a softlink from acmebot.py to acmebot, such as by doing | |
# ln -s /original/acmebot/acmebot /original/acmebot/acmebot.py | |
sys.path.insert(0, "/original/acmebot") | |
from acmebot import AcmeManager |
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 | |
# 將orig/*生成128x128的縮圖放到thumbnail/* | |
# 每次跑只會搜索新的檔案 | |
# thumbnail如已經存在較新的也會忽略,不會覆蓋 | |
# | |
# orig和thumbnail兩個目錄要自己創建 | |
cd "$(dirname "$(realpath "$0")")"; |